mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-26 07:06:45 +01:00
Vampirism fix
This commit is contained in:
parent
6f073250f4
commit
c1d6e79a41
@ -12,6 +12,7 @@ Version 1.3.11
|
|||||||
+ Added compatibility for pvp-prevention plugins for Serrated Strikes
|
+ Added compatibility for pvp-prevention plugins for Serrated Strikes
|
||||||
= Fixed bug where mcMMO could throw NPE errors if trees cut down were from a custom mod and had an id of 17
|
= Fixed bug where mcMMO could throw NPE errors if trees cut down were from a custom mod and had an id of 17
|
||||||
= Fixed dupe bug where mcMMO would ignore other block-protection plugins for various abilities
|
= Fixed dupe bug where mcMMO would ignore other block-protection plugins for various abilities
|
||||||
|
= Fixed NPE with hardcore mode's vampirism
|
||||||
|
|
||||||
Version 1.3.10
|
Version 1.3.10
|
||||||
+ Added 1.3.1 compatibility
|
+ Added 1.3.1 compatibility
|
||||||
|
@ -22,7 +22,7 @@ public class HardcoreListener implements Listener {
|
|||||||
Player player = event.getEntity(); //Note this returns a Player object for this subevent
|
Player player = event.getEntity(); //Note this returns a Player object for this subevent
|
||||||
|
|
||||||
if (!Permissions.getInstance().hardcoremodeBypass(player)) {
|
if (!Permissions.getInstance().hardcoremodeBypass(player)) {
|
||||||
if (Config.getInstance().getHardcoreVampirismEnabled()) {
|
if (player.getKiller() != null && Config.getInstance().getHardcoreVampirismEnabled()) {
|
||||||
Hardcore.invokeVampirism(player.getKiller(), player);
|
Hardcore.invokeVampirism(player.getKiller(), player);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user