mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Fixed: Inventor's Goggle was triggering for opponent's creatures. it shouldn't
This commit is contained in:
parent
7b336e3a0b
commit
dba0f14591
1 changed files with 2 additions and 2 deletions
|
@ -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"),
|
||||
|
|
Loading…
Reference in a new issue