fix armor powder tooltip display bug

This commit is contained in:
ferricles 2022-05-21 00:43:03 -07:00
parent 98dfe1c62c
commit f8d90b347e

View file

@ -411,5 +411,5 @@ async function hardReload() {
function capitalizeFirst(str) {
return str.charAt(0).toUpperCase + str.slice(1);
return str[0].toUpperCase() + str.substring(1);
}