Properly apply damage causes

This commit is contained in:
ShadowRanger 2015-09-28 11:45:25 +10:00
parent 8485bd44f9
commit 7d6714f713
2 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@ public class Commandkill extends EssentialsLoopCommand {
if (ede.isCancelled() && sender.isPlayer() && !ess.getUser(sender.getPlayer()).isAuthorized("essentials.kill.force")) {
return;
}
ede.getEntity().setLastDamageCause(ede);
matchPlayer.damage(Short.MAX_VALUE);
if (matchPlayer.getHealth() > 0) {

View File

@ -16,6 +16,7 @@ public class Commandsuicide extends EssentialsCommand {
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception {
EntityDamageEvent ede = new EntityDamageEvent(user.getBase(), EntityDamageEvent.DamageCause.SUICIDE, Short.MAX_VALUE);
server.getPluginManager().callEvent(ede);
ede.getEntity().setLastDamageCause(ede);
user.getBase().damage(Short.MAX_VALUE);
if (user.getBase().getHealth() > 0) {
user.getBase().setHealth(0);