mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
- Fixed Codie, Vociferous Codex. The controller can't cast permanents now.
This commit is contained in:
parent
a9d1a92abc
commit
95a719225a
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ class CodieVociferousCodexCantCastEffect extends ContinuousRuleModifyingEffectIm
|
||||||
if (!source.isControlledBy(event.getPlayerId())) {
|
if (!source.isControlledBy(event.getPlayerId())) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
Card card = game.getCard(event.getTargetId());
|
Card card = game.getCard(event.getSourceId());
|
||||||
return card != null && card.isPermanent(game);
|
return card != null && card.isPermanent(game);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue