Skip to content

Commit

Permalink
fix MythicMobs, replace doing-skill-damage to skill_damage (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwnintended authored Aug 19, 2024
1 parent 1595258 commit 401c4ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void damage(EntityDamageByEntityEvent e) {
return;

// MythicMobs damage skill support. Holding a gun while dealing damage normally triggers this
if (victim.hasMetadata("doing-skill-damage"))
if (victim.hasMetadata("skill-damage"))
return;

EntityDamageEvent.DamageCause cause = e.getCause();
Expand Down

0 comments on commit 401c4ec

Please sign in to comment.