Fixed a few player-respawn issues. This should resolve BUKKIT-28 (Dupe bug), BUKKIT-29 (Poisons lasting), and BUKKIT-46 (XP resetting)

This commit is contained in:
Nathan Adams
2011-12-04 12:10:02 +00:00
parent 55a532c251
commit 98e062f0cf
2 changed files with 16 additions and 9 deletions

View File

@@ -262,15 +262,7 @@ public class ServerConfigurationManager {
this.cserver.getPluginManager().callEvent(respawnEvent);
location = respawnEvent.getRespawnLocation();
entityplayer.health = 20;
entityplayer.fireTicks = 0;
entityplayer.fallDistance = 0;
entityplayer.foodData = new FoodMetaData();
entityplayer.expLevel = 0;
entityplayer.expTotal = 0;
entityplayer.exp = 0;
entityplayer.deathTicks = 0;
entityplayer.d(entityplayer.newExp);
entityplayer.reset();
} else {
location.setWorld(this.server.getWorldServer(i).getWorld());
}