Fixing Kill/suicide in creative mode.

This commit is contained in:
KHobbits 2012-01-29 21:37:38 +00:00
parent dff8f541fe
commit a2418a68d9
2 changed files with 3 additions and 1 deletions

View file

@ -31,7 +31,8 @@ public class Commandkill extends EssentialsCommand
continue;
}
matchPlayer.damage(1000);
matchPlayer.damage(1000);
matchPlayer.setHealth(0);
sender.sendMessage(_("kill", matchPlayer.getDisplayName()));
}
}