mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Fixed Syr Konrad triggering after he lost abilities (fixes #8401)
This commit is contained in:
parent
a55cfe2589
commit
4094580a6c
1 changed files with 6 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.MageObject;
|
||||
import mage.abilities.TriggeredAbilityImpl;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
|
@ -93,6 +94,11 @@ class SyrKonradTheGrimTriggeredAbility extends TriggeredAbilityImpl {
|
|||
&& zEvent.getPlayerId() == this.getControllerId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isInUseableZone(Game game, MageObject source, GameEvent event) {
|
||||
return TriggeredAbilityImpl.isInUseableZoneDiesTrigger(this, event, game);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Whenever another creature dies, or a creature card is put into a graveyard " +
|
||||
|
|
Loading…
Reference in a new issue