From 22e1cf4c88a06602ef32b034eab7b1d2cf50bfd3 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Mon, 14 Mar 2022 22:46:04 -0400 Subject: [PATCH] [ALA] fixed Rafiq of the Many not granting double strike (fixes #8769) --- Mage.Sets/src/mage/cards/r/RafiqOfTheMany.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/r/RafiqOfTheMany.java b/Mage.Sets/src/mage/cards/r/RafiqOfTheMany.java index 3a123322796..1e01d8a5c6d 100644 --- a/Mage.Sets/src/mage/cards/r/RafiqOfTheMany.java +++ b/Mage.Sets/src/mage/cards/r/RafiqOfTheMany.java @@ -34,7 +34,7 @@ public final class RafiqOfTheMany extends CardImpl { // Whenever a creature you control attacks alone, it gains double strike until end of turn. this.addAbility(new AttacksAloneControlledTriggeredAbility(new GainAbilityTargetEffect( DoubleStrikeAbility.getInstance(), Duration.EndOfTurn - ).setText("it gains double strike until end of turn"))); + ).setText("it gains double strike until end of turn"), true, false)); } private RafiqOfTheMany(final RafiqOfTheMany card) {