mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
fixed Mistbind Clique not triggering on championing of Mutavault
This commit is contained in:
parent
6cec8e2263
commit
ee6d3c0fc9
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ class MistbindCliqueAbility extends ZoneChangeTriggeredAbility {
|
|||
&& event.getSourceId().equals(getSourceId())
|
||||
&& !event.getSourceId().equals(event.getTargetId())) {
|
||||
Permanent sacrificed = game.getPermanentOrLKIBattlefield(event.getTargetId());
|
||||
if (sacrificed != null && sacrificed.hasSubtype(SubType.FAERIE, game)) {
|
||||
if (sacrificed != null) {// no longer checks for Faerie as LKI isn't always accurate, can't think of how that could matter anyway - TheElk801
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue