From 1baf29d194e317a371ac1059584d54dbfdc4a349 Mon Sep 17 00:00:00 2001 From: Thomas Winwood Date: Wed, 24 Jan 2018 13:45:37 +0000 Subject: [PATCH] Fix Unified Strike Unified Strike currently does nothing at all because the Outcome is set wrong. --- Mage.Sets/src/mage/cards/u/UnifiedStrike.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/u/UnifiedStrike.java b/Mage.Sets/src/mage/cards/u/UnifiedStrike.java index 87b42ae662..0894e57e05 100644 --- a/Mage.Sets/src/mage/cards/u/UnifiedStrike.java +++ b/Mage.Sets/src/mage/cards/u/UnifiedStrike.java @@ -75,8 +75,8 @@ class UnifiedStrikeEffect extends OneShotEffect { } UnifiedStrikeEffect() { - super(Outcome.Benefit); - this.staticText = ""; + super(Outcome.Exile); + this.staticText = "Exile target attacking creature if its power is less than or equal to the number of Soldiers on the battlefield."; } UnifiedStrikeEffect(final UnifiedStrikeEffect effect) {