fix armor powder tooltip display bug
This commit is contained in:
parent
98dfe1c62c
commit
f8d90b347e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
Loading…
Reference in a new issue