Skip to content

Commit

Permalink
fix reminder text
Browse files Browse the repository at this point in the history
  • Loading branch information
xenohedron committed Sep 29, 2023
1 parent c2d2088 commit 2b53ff9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Mage.Sets/src/mage/cards/s/ShadowPuppeteers.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public ShadowPuppeteers(UUID ownerId, CardSetInfo setInfo) {
this.addAbility(FlyingAbility.getInstance());

// Ward {2}
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));

// When Shadow Puppeteers enters the battlefield, create two 1/1 black Faerie Rogue creature tokens with flying.
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new FaerieRogueToken(), 2)));
Expand Down Expand Up @@ -114,4 +114,4 @@ public boolean apply(Layer layer, SubLayer sublayer, Ability source, Game game)
}
return true;
}
}
}
4 changes: 2 additions & 2 deletions Mage.Sets/src/mage/cards/w/WargRider.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
public final class WargRider extends CardImpl {

private final static FilterControlledCreaturePermanent filterOrcAndGoblins =
private static final FilterControlledCreaturePermanent filterOrcAndGoblins =
new FilterControlledCreaturePermanent("Orcs and Goblins");

static {
Expand All @@ -40,7 +40,7 @@ public WargRider(UUID ownerId, CardSetInfo setInfo) {
this.toughness = new MageInt(3);

// Menace
this.addAbility(new MenaceAbility());
this.addAbility(new MenaceAbility(false));

// Other Orcs and Goblins you control have menace.
this.addAbility(new SimpleStaticAbility(
Expand Down

0 comments on commit 2b53ff9

Please sign in to comment.