From dba0f14591d3747684a9b2aa30b4edf8a3192cfc Mon Sep 17 00:00:00 2001 From: brodee Date: Sun, 18 Sep 2016 23:24:51 -0700 Subject: [PATCH] Fixed: Inventor's Goggle was triggering for opponent's creatures. it shouldn't --- Mage.Sets/src/mage/sets/kaladesh/InventorsGoggles.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/kaladesh/InventorsGoggles.java b/Mage.Sets/src/mage/sets/kaladesh/InventorsGoggles.java index 630766e4ab..984fc46d9a 100644 --- a/Mage.Sets/src/mage/sets/kaladesh/InventorsGoggles.java +++ b/Mage.Sets/src/mage/sets/kaladesh/InventorsGoggles.java @@ -28,7 +28,7 @@ package mage.sets.kaladesh; import java.util.UUID; -import mage.abilities.common.EntersBattlefieldAllTriggeredAbility; +import mage.abilities.common.EntersBattlefieldControlledTriggeredAbility; import mage.abilities.common.SimpleStaticAbility; import mage.abilities.costs.mana.GenericManaCost; import mage.abilities.effects.common.AttachEffect; @@ -58,7 +58,7 @@ public class InventorsGoggles extends CardImpl { this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEquippedEffect(1, 2, Duration.WhileOnBattlefield))); // Whenever an Artificer enters the battlefield under your control, you may attach Inventor's Goggles to it. - this.addAbility(new EntersBattlefieldAllTriggeredAbility( + this.addAbility(new EntersBattlefieldControlledTriggeredAbility( Zone.BATTLEFIELD, new AttachEffect(Outcome.BoostCreature, "attach {this} to it"), new FilterPermanent("Artificer", "Artificer"),