From 9c6b9073a8167f0d1062c594a21272e3fb2bfdb7 Mon Sep 17 00:00:00 2001 From: spjspj Date: Thu, 15 Dec 2016 20:42:29 +1100 Subject: [PATCH] spjspj - Eye of the Storm fix --- Mage.Sets/src/mage/cards/e/EyeOfTheStorm.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/e/EyeOfTheStorm.java b/Mage.Sets/src/mage/cards/e/EyeOfTheStorm.java index e0193d2bbb2..2e0102c774f 100644 --- a/Mage.Sets/src/mage/cards/e/EyeOfTheStorm.java +++ b/Mage.Sets/src/mage/cards/e/EyeOfTheStorm.java @@ -63,7 +63,7 @@ import mage.util.CardUtil; public class EyeOfTheStorm extends CardImpl { public EyeOfTheStorm(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{5}{U}{U}"); + super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{5}{U}{U}"); // Whenever a player casts an instant or sorcery card, exile it. Then that player copies each instant or sorcery card exiled with Eye of the Storm. For each copy, the player may cast the copy without paying its mana cost. this.addAbility(new EyeOfTheStormAbility()); @@ -101,7 +101,7 @@ class EyeOfTheStormAbility extends TriggeredAbilityImpl { @Override public boolean checkTrigger(GameEvent event, Game game) { - if (event.getZone() == Zone.HAND) { + if (event.getZone() != Zone.OUTSIDE) { Spell spell = game.getStack().getSpell(event.getTargetId()); if (spell != null && !spell.isCopy() && (spell.getCardType().contains(CardType.INSTANT) || spell.getCardType().contains(CardType.SORCERY))) {