fixed Fires of Invention allowing more than two spells cast

This commit is contained in:
Evan Kranzler 2019-09-23 10:00:23 -04:00
parent 6bd622072c
commit 2daa9b6004

View file

@ -92,7 +92,7 @@ class FiresOfInventionCastEffect extends ContinuousRuleModifyingEffectImpl {
if (watcher == null) { if (watcher == null) {
return false; return false;
} }
return watcher.getAmountOfSpellsPlayerCastOnCurrentTurn(source.getControllerId()) > 2 return watcher.getAmountOfSpellsPlayerCastOnCurrentTurn(source.getControllerId()) > 1
|| !game.getActivePlayerId().equals(source.getControllerId()); || !game.getActivePlayerId().equals(source.getControllerId());
} }