Skip to content

Commit

Permalink
Ensure we have a fallback for localization
Browse files Browse the repository at this point in the history
  • Loading branch information
KingRainbow44 committed May 6, 2022
1 parent 57a3d53 commit 686df18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/emu/grasscutter/utils/Language.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public String get(String key) {
JsonObject object = this.languageData;

int index = 0;
String result = "";
String result = "This value does not exist. Please report this to the Discord: " + key;

while (true) {
if(index == keys.length) break;
Expand Down

0 comments on commit 686df18

Please sign in to comment.