mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Fixed Ral, Storm Conduit that it don't triggers spells cast
This commit is contained in:
parent
9ea6fd2b62
commit
d98b0ca1a6
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ class RalStormConduitTriggeredAbility extends TriggeredAbilityImpl {
|
|||
@Override
|
||||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
Spell spell = game.getSpell(event.getTargetId());
|
||||
return spell != null && spell.isControlledBy(getSourceId()) && spell.isInstantOrSorcery();
|
||||
return spell != null && spell.isControlledBy(getControllerId()) && spell.isInstantOrSorcery();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue