1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-01 19:07:57 -09:00

fixed Syr Faren, the Hengehammer's ability

This commit is contained in:
Evan Kranzler 2019-10-06 18:31:12 -04:00
parent 65efdc36f5
commit 45b3d391d7

View file

@ -43,7 +43,7 @@ public final class SyrFarenTheHengehammer extends CardImpl {
// Whenever Syr Faren, the Hengehammer attacks, another target attacking creature gets +X/+X until end of turn, where X is Syr Faren's power.
Ability ability = new AttacksTriggeredAbility(
new BoostTargetEffect(xValue, xValue, Duration.EndOfTurn), false
new BoostTargetEffect(xValue, xValue, Duration.EndOfTurn, true), false
);
ability.addTarget(new TargetPermanent(filter));
this.addAbility(ability);