Prevent commands from setting players to negative levels

This commit is contained in:
nossr50
2019-01-14 22:21:33 -08:00
parent 95d60e646d
commit da6b6841b7
3 changed files with 6 additions and 1 deletions

View File

@ -245,7 +245,7 @@ public class Config extends AutoUpdateConfigLoader {
/* General Settings */
//Classic mode will default the value to true if the config file doesn't contain the entry (server is from a previous mcMMO install)
//Retro mode will default the value to true if the config file doesn't contain the entry (server is from a previous mcMMO install)
public boolean getIsRetroMode() { return config.getBoolean("General.RetroMode", true); }
//XP needed to level is multiplied by this when using classic mode

View File

@ -280,6 +280,10 @@ public class PlayerProfile {
changed = true;
//Don't allow levels to be negative
if(level < 0)
level = 0;
skills.put(skill, level);
skillsXp.put(skill, 0F);
}