mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
Added check for ChangelingAbility.ALL_CREATURE_TYPE to MageObjectImpl.
This commit is contained in:
parent
5dfc4405f1
commit
62440c344f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue