Compare commits

..

No commits in common. "3ce8307292e1f49b17480613583ae2f82bb29f31" and "d8b27bcfd55b29c1320a031f377790f14cc4e123" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -140,7 +140,7 @@ public class ConfigContainer {
public boolean autoCreate = false;
public boolean EXPERIMENTAL_RealPassword = false;
public String[] defaultPermissions = {};
public String playerEmail = "grasscutter.io";
public String playeremail = "grasscutter.io";
public int maxPlayer = -1;
}

View File

@ -109,7 +109,7 @@ public class Account {
return email;
} else {
// As of game version 3.5+, only the email is displayed to a user.
return this.getUsername() + "@" + ACCOUNT.playerEmail;
return this.getUsername() + "@"+ACCOUNT.playeremail;
}
}
@ -235,7 +235,7 @@ public class Account {
this.addPermission("*");
}
// Set account default language to server default language
// Set account default language as fserver default language
if (!document.containsKey("locale")) {
this.locale = LANGUAGE;
}