Because reload is evil.

This commit is contained in:
GJ 2013-04-02 08:20:55 -04:00
parent d7f67d43b3
commit 1fb28eeee0

View File

@ -25,6 +25,8 @@ import com.gmail.nossr50.config.spout.SpoutConfig;
import com.gmail.nossr50.config.treasure.TreasureConfig; import com.gmail.nossr50.config.treasure.TreasureConfig;
import com.gmail.nossr50.database.DatabaseManager; import com.gmail.nossr50.database.DatabaseManager;
import com.gmail.nossr50.database.LeaderboardManager; import com.gmail.nossr50.database.LeaderboardManager;
import com.gmail.nossr50.datatypes.player.McMMOPlayer;
import com.gmail.nossr50.datatypes.skills.AbilityType;
import com.gmail.nossr50.listeners.BlockListener; import com.gmail.nossr50.listeners.BlockListener;
import com.gmail.nossr50.listeners.EntityListener; import com.gmail.nossr50.listeners.EntityListener;
import com.gmail.nossr50.listeners.InventoryListener; import com.gmail.nossr50.listeners.InventoryListener;
@ -126,7 +128,7 @@ public class mcMMO extends JavaPlugin {
} }
for (Player player : getServer().getOnlinePlayers()) { for (Player player : getServer().getOnlinePlayers()) {
UserManager.addUser(player); // In case of reload add all users back into PlayerProfile UserManager.addUser(player); // In case of reload add all users back into UserManager
} }
getLogger().info("Version " + getDescription().getVersion() + " is enabled!"); getLogger().info("Version " + getDescription().getVersion() + " is enabled!");
@ -164,6 +166,7 @@ public class mcMMO extends JavaPlugin {
@Override @Override
public void onDisable() { public void onDisable() {
try { try {
reloadDisableHelper(); // Prevent Berserk from getting "stuck"
UserManager.saveAll(); // Make sure to save player information if the server shuts down UserManager.saveAll(); // Make sure to save player information if the server shuts down
PartyManager.saveParties(); PartyManager.saveParties();
placeStore.saveAll(); // Save our metadata placeStore.saveAll(); // Save our metadata
@ -444,4 +447,17 @@ public class mcMMO extends JavaPlugin {
partyAutoKickTask.runTaskTimer(this, kickIntervalTicks, kickIntervalTicks); partyAutoKickTask.runTaskTimer(this, kickIntervalTicks, kickIntervalTicks);
} }
} }
/**
* Because /reload is the biggest piece of garbage in existence,
* we have to do some special checks to keep it from breaking everything.
*/
private void reloadDisableHelper() {
for (McMMOPlayer mcMMOPlayer : UserManager.getPlayers().values()) {
if (mcMMOPlayer.getAbilityMode(AbilityType.BERSERK)) {
mcMMOPlayer.setAbilityMode(AbilityType.BERSERK, false);
mcMMOPlayer.getPlayer().setCanPickupItems(true);
}
}
}
} }