mirror of
https://github.com/correl/mage.git
synced 2024-11-25 19:19:55 +00:00
Bug fix for Gargos, Vicious Watcher. His triggered ability now activates when creatures you control are enchanted with auras. Bug reported by u/bubblesdotua on r/XMage. Not mentioned in any open issues.
This commit is contained in:
parent
b3670a6014
commit
d6bdb39041
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ class GargosViciousWatcherTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
|| !permanent.isCreature()) {
|
|| !permanent.isCreature()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return object.isInstantOrSorcery(); // must specify a type of spell
|
return object.isInstantOrSorcery() || object.isEnchantment(); // must be a type of spell (instant, sorcery, or aura)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue