From 2daa9b60044326a8e935a36767a3e5be68c9bb3f Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Mon, 23 Sep 2019 10:00:23 -0400 Subject: [PATCH] fixed Fires of Invention allowing more than two spells cast --- Mage.Sets/src/mage/cards/f/FiresOfInvention.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/f/FiresOfInvention.java b/Mage.Sets/src/mage/cards/f/FiresOfInvention.java index 2c23f65279..b87e4c6185 100644 --- a/Mage.Sets/src/mage/cards/f/FiresOfInvention.java +++ b/Mage.Sets/src/mage/cards/f/FiresOfInvention.java @@ -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()); }