mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 06:22:01 -08:00
fixed Fires of Invention allowing more than two spells cast
This commit is contained in:
parent
6bd622072c
commit
2daa9b6004
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ class FiresOfInventionCastEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
if (watcher == null) {
|
||||
return false;
|
||||
}
|
||||
return watcher.getAmountOfSpellsPlayerCastOnCurrentTurn(source.getControllerId()) > 2
|
||||
return watcher.getAmountOfSpellsPlayerCastOnCurrentTurn(source.getControllerId()) > 1
|
||||
|| !game.getActivePlayerId().equals(source.getControllerId());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue