Update ExperienceAction.java

This commit is contained in:
lilingfengdev 2024-01-30 15:40:30 +08:00 committed by GitHub
parent dab31dba51
commit fab5a7f413
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ public class ExperienceAction extends NPCShopAction {
@Override
public String describe() {
return exp == 1 ? exp + " level" : exp + " levels";
return exp == 1 ? exp + " 等级" : exp + " 等级";
}
@Override
@ -98,4 +98,4 @@ public class ExperienceAction extends NPCShopAction {
return action instanceof ExperienceAction;
}
}
}
}