mirror of
https://github.com/correl/mage.git
synced 2025-02-19 11:07:01 +00:00
[MID] Fixed ETB abilities triggering Flame Channeler (fixes #8418)
This commit is contained in:
parent
cdfe3d1d2d
commit
f3397dcf4f
2 changed files with 2 additions and 2 deletions
Mage.Sets/src/mage/cards
|
@ -83,7 +83,7 @@ class EmbodimentOfFlameTriggeredAbility extends TriggeredAbilityImpl {
|
|||
@Override
|
||||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
Spell spell = game.getSpellOrLKIStack(event.getSourceId());
|
||||
return spell != null && isControlledBy(spell.getControllerId());
|
||||
return spell != null && isControlledBy(spell.getControllerId()) && spell.isInstantOrSorcery(game);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -68,7 +68,7 @@ class FlameChannelerTriggeredAbility extends TriggeredAbilityImpl {
|
|||
@Override
|
||||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
Spell spell = game.getSpellOrLKIStack(event.getSourceId());
|
||||
return spell != null && isControlledBy(spell.getControllerId());
|
||||
return spell != null && isControlledBy(spell.getControllerId()) && spell.isInstantOrSorcery(game);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue