Update JeffChestSortPlugin.java

This commit is contained in:
JEFF 2018-08-24 19:08:19 +02:00 committed by GitHub
parent 5d5922dde3
commit b88186e0a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -197,13 +197,13 @@ public class JeffChestSortPlugin extends JavaPlugin {
public boolean sortingEnabled(Player p) {
// The following is for all the lazy server admins who use /reload instead of properly restarting their
// server. I am constantly getting stacktraces although it is clearly stated that /reload is NOT
// supported. But I am tired of explaining that to everyone, so here is a quick but actually useless fix
// server ;) I am sometimes getting stacktraces although it is clearly stated that /reload is NOT
// supported. So, here is a quick fix
if(PerPlayerSettings == null) {
PerPlayerSettings = new HashMap<String, JeffChestSortPlayerSetting>();
}
listener.registerPlayerIfNeeded(p);
// End of quick but actually useless fix
// End of quick fix
return PerPlayerSettings.get(p.getUniqueId().toString()).sortingEnabled;
}