mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00: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…
Reference in a new issue