Fix onDeath

This commit is contained in:
Daniel Saukel 2015-09-20 17:18:57 +02:00
parent 56c3e982ba
commit c98e52a925

View File

@ -24,9 +24,12 @@ public class PlayerDeathListener implements Listener {
Player player = event.getEntity();
DPlayer dPlayer = DPlayer.get(player);
DConfig dConfig = GameWorld.get(player.getLocation().getWorld()).config;
GameWorld gameWorld = GameWorld.get(player.getLocation().getWorld());
if (gameWorld != null) {
DConfig dConfig = gameWorld.config;
if (dPlayer != null) {
if (dConfig != null) {
if (dConfig.getKeepInventoryOnDeath()) {
dPlayer.respawnInventory = event.getEntity().getInventory().getContents();
dPlayer.respawnArmor = event.getEntity().getInventory().getArmorContents();
@ -35,6 +38,7 @@ public class PlayerDeathListener implements Listener {
istack.setType(Material.AIR);
}
}
}
if (p.lives.containsKey(player)) {
lives = p.lives.get(player) - 1;
@ -52,3 +56,5 @@ public class PlayerDeathListener implements Listener {
}
}
}