From 45dca9e596de769822675b35cbba10887327039b Mon Sep 17 00:00:00 2001 From: Zzooouhh Date: Sat, 30 Sep 2017 23:42:44 +0200 Subject: [PATCH] Minor Shoving Match fix --- Mage.Sets/src/mage/cards/s/ShovingMatch.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/s/ShovingMatch.java b/Mage.Sets/src/mage/cards/s/ShovingMatch.java index 0f059b9928a..ae3025498ac 100644 --- a/Mage.Sets/src/mage/cards/s/ShovingMatch.java +++ b/Mage.Sets/src/mage/cards/s/ShovingMatch.java @@ -50,7 +50,7 @@ public class ShovingMatch extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{U}"); // Until end of turn, all creatures gain "{tap}: Tap target creature." - Ability ability = new SimpleActivatedAbility(new TapTargetEffect(), new TapSourceCost()); + Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new TapTargetEffect(), new TapSourceCost()); ability.addTarget(new TargetCreaturePermanent()); this.getSpellAbility().addEffect( new GainAbilityAllEffect(ability, Duration.EndOfTurn, new FilterCreaturePermanent())