From cb0f9c9e14c2dbbef1bbc5d3c2538d9dad981599 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 17 Sep 2014 11:22:54 +0200 Subject: [PATCH] * Goblin Rabblemaster - Fixed that its attack boost value was not fixed until end of turn as the attack was declared. --- Mage.Sets/src/mage/sets/magic2015/GoblinRabblemaster.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/magic2015/GoblinRabblemaster.java b/Mage.Sets/src/mage/sets/magic2015/GoblinRabblemaster.java index ad740f8cfd1..c31b5c9cd4e 100644 --- a/Mage.Sets/src/mage/sets/magic2015/GoblinRabblemaster.java +++ b/Mage.Sets/src/mage/sets/magic2015/GoblinRabblemaster.java @@ -86,7 +86,7 @@ public class GoblinRabblemaster extends CardImpl { this.addAbility(new BeginningOfCombatTriggeredAbility(new CreateTokenEffect(new GoblinToken()), TargetController.YOU, false)); // When Goblin Rabblemaster attacks, it gets +1/+0 until end of turn for each other attacking Goblin. - this.addAbility(new AttacksTriggeredAbility(new BoostSourceEffect(new PermanentsOnBattlefieldCount(attackingFilter), new StaticValue(0), Duration.EndOfTurn), false)); + this.addAbility(new AttacksTriggeredAbility(new BoostSourceEffect(new PermanentsOnBattlefieldCount(attackingFilter), new StaticValue(0), Duration.EndOfTurn, true), false)); } public GoblinRabblemaster(final GoblinRabblemaster card) {