mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
Only call one Death Penalty Event
This commit is contained in:
parent
4b402d9837
commit
56b57da077
@ -140,6 +140,12 @@ public class PlayerListener implements Listener {
|
||||
|
||||
Player killer = killedPlayer.getKiller();
|
||||
|
||||
|
||||
if (statLossEnabled || (killer != null && vampirismEnabled)) {
|
||||
if (EventUtils.callDeathPenaltyEvent(killedPlayer).isCancelled()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (killer != null && vampirismEnabled) {
|
||||
HardcoreManager.invokeVampirism(killer, killedPlayer);
|
||||
}
|
||||
@ -148,6 +154,7 @@ public class PlayerListener implements Listener {
|
||||
HardcoreManager.invokeStatPenalty(killedPlayer);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Monitor PlayerChangedWorldEvents.
|
||||
|
@ -14,10 +14,6 @@ public final class HardcoreManager {
|
||||
public static void invokeStatPenalty(Player player) {
|
||||
double statLossPercentage = Config.getInstance().getHardcoreDeathStatPenaltyPercentage();
|
||||
|
||||
if (EventUtils.callDeathPenaltyEvent(player).isCancelled()) {
|
||||
return;
|
||||
}
|
||||
|
||||
PlayerProfile playerProfile = UserManager.getPlayer(player).getProfile();
|
||||
int totalLevelsLost = 0;
|
||||
|
||||
@ -49,10 +45,6 @@ public final class HardcoreManager {
|
||||
public static void invokeVampirism(Player killer, Player victim) {
|
||||
double vampirismStatLeechPercentage = Config.getInstance().getHardcoreVampirismStatLeechPercentage();
|
||||
|
||||
if (EventUtils.callDeathPenaltyEvent(victim).isCancelled()) {
|
||||
return;
|
||||
}
|
||||
|
||||
PlayerProfile killerProfile = UserManager.getPlayer(killer).getProfile();
|
||||
PlayerProfile victimProfile = UserManager.getPlayer(victim).getProfile();
|
||||
int totalLevelsStolen = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user