mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-26 23:26:45 +01:00
Fixed not checking if an Entity was a LivingEntity before applying the
Counter-Attack ability.
This commit is contained in:
parent
b331fa353b
commit
20b73dcc84
@ -209,8 +209,10 @@ public class Combat {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (configInstance.getSwordsPVE() && !(damager instanceof Player)) {
|
if (configInstance.getSwordsPVE() && !(damager instanceof Player)) {
|
||||||
|
if (damager instanceof LivingEntity) {
|
||||||
swordsManager.counterAttackChecks((LivingEntity) damager, event.getDamage());
|
swordsManager.counterAttackChecks((LivingEntity) damager, event.getDamage());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (configInstance.getAcrobaticsPVP() && damager instanceof Player) {
|
if (configInstance.getAcrobaticsPVP() && damager instanceof Player) {
|
||||||
acroManager.dodgeCheck(event);
|
acroManager.dodgeCheck(event);
|
||||||
|
Loading…
Reference in New Issue
Block a user