Added real name boolean option for the /list command (#3117)

This commit is contained in:
Radoje17 2020-04-02 09:06:32 +02:00 committed by GitHub
parent ad98fc4121
commit b08d380643
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 0 deletions

View file

@ -791,6 +791,11 @@ public class Settings implements net.ess3.api.ISettings {
return economyLogUpdate;
}
@Override
public boolean realNamesOnList() {
return config.getBoolean("real-names-on-list", false);
}
public boolean _isEcoLogUpdateEnabled() {
return config.getBoolean("economy-log-update-enabled", false);
}