mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 20:00:46 +00:00
Properly apply damage causes
This commit is contained in:
parent
8485bd44f9
commit
7d6714f713
2 changed files with 2 additions and 0 deletions
|
@ -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) {
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue