Fixed rule text on Frenzied Goblin (#9182)

This commit is contained in:
onura46 2022-06-29 11:38:32 -07:00 committed by GitHub
parent c6cc9bd83f
commit d87365b89e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,7 +33,7 @@ public final class FrenziedGoblin extends CardImpl {
// Whenever Frenzied Goblin attacks, you may pay {R}. If you do, target creature can't block this turn.
Ability ability = new AttacksTriggeredAbility(new DoIfCostPaid(new CantBlockTargetEffect(Duration.EndOfTurn), new ManaCostsImpl<>("{R}")),false,
"Whenever {this} attacks you, may pay {R}. If you do, target creature can't block this turn.");
"Whenever {this} attacks, you may pay {R}. If you do, target creature can't block this turn.");
Target target = new TargetCreaturePermanent();
ability.addTarget(target);
this.addAbility(ability);