mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
* Deafening Silence - Fixed that it allowed two cast to noncreature spells.
This commit is contained in:
parent
9d545d852a
commit
0670d0cefc
1 changed files with 3 additions and 4 deletions
|
@ -1,6 +1,8 @@
|
|||
package mage.cards.d;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.ContinuousRuleModifyingEffectImpl;
|
||||
|
@ -16,9 +18,6 @@ import mage.game.events.GameEvent;
|
|||
import mage.game.stack.Spell;
|
||||
import mage.watchers.Watcher;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
|
@ -81,7 +80,7 @@ class DeafeningSilenceEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
}
|
||||
DeafeningSilenceWatcher watcher = game.getState().getWatcher(DeafeningSilenceWatcher.class);
|
||||
return watcher != null
|
||||
&& watcher.spellsCastByPlayerThisTurnNonCreature(event.getPlayerId()) > 1;
|
||||
&& watcher.spellsCastByPlayerThisTurnNonCreature(event.getPlayerId()) > 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue