fixed cleave hurting self

This commit is contained in:
Cheese 2015-03-20 18:43:44 +11:00
parent 810517b142
commit 392a648f8e
1 changed files with 3 additions and 0 deletions

View File

@ -63,6 +63,9 @@ public class PerkCleave extends Perk
{
if (other.equals(damagee))
continue;
if (other.equals(damager))
continue;
if (!Manager.canHurt(damager, other))
continue;