Added check for ChangelingAbility.ALL_CREATURE_TYPE to MageObjectImpl.

This commit is contained in:
LevelX2 2013-09-03 08:28:31 +02:00
parent 5dfc4405f1
commit 62440c344f

View file

@ -175,7 +175,7 @@ public abstract class MageObjectImpl<T extends MageObjectImpl<T>> implements Mag
return false; return false;
} }
// as it is creature subtype, then check the existence of Changeling // as it is creature subtype, then check the existence of Changeling
return abilities.contains(ChangelingAbility.getInstance()); return abilities.contains(ChangelingAbility.getInstance()) || this.subtype.contains(ChangelingAbility.ALL_CREATURE_TYPE);
} }
} }