From 99a2f4b32378e7caa359e445f64aeea1080075aa Mon Sep 17 00:00:00 2001 From: Quercitron Date: Tue, 12 Jul 2016 02:02:52 +0300 Subject: [PATCH] * Borrowed Hostility - Fixed that all controlled creatures were buffed with the first mode. --- Mage.Sets/src/mage/sets/eldritchmoon/BorrowedHostility.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/eldritchmoon/BorrowedHostility.java b/Mage.Sets/src/mage/sets/eldritchmoon/BorrowedHostility.java index f5b7a485bae..4c8bd13b872 100644 --- a/Mage.Sets/src/mage/sets/eldritchmoon/BorrowedHostility.java +++ b/Mage.Sets/src/mage/sets/eldritchmoon/BorrowedHostility.java @@ -30,7 +30,7 @@ package mage.sets.eldritchmoon; import java.util.UUID; import mage.abilities.Mode; import mage.abilities.costs.mana.ManaCostsImpl; -import mage.abilities.effects.common.continuous.BoostControlledEffect; +import mage.abilities.effects.common.continuous.BoostTargetEffect; import mage.abilities.effects.common.continuous.GainAbilityTargetEffect; import mage.abilities.keyword.EscalateAbility; import mage.abilities.keyword.FirstStrikeAbility; @@ -58,7 +58,7 @@ public class BorrowedHostility extends CardImpl { // Target creature gets +3/+0 until end of turn.; this.getSpellAbility().addTarget(new TargetCreaturePermanent()); - this.getSpellAbility().addEffect(new BoostControlledEffect(3, 0, Duration.EndOfTurn)); + this.getSpellAbility().addEffect(new BoostTargetEffect(3, 0, Duration.EndOfTurn)); // Target creature gains first strike until end of turn. Mode mode = new Mode();