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:
dragonfyre23 2020-01-30 15:21:25 -05:00
parent b3670a6014
commit d6bdb39041

View file

@ -97,7 +97,7 @@ class GargosViciousWatcherTriggeredAbility extends TriggeredAbilityImpl {
|| !permanent.isCreature()) {
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)
}