small text update

This commit is contained in:
Evan Kranzler 2021-04-20 19:40:52 -04:00
parent 42132bb852
commit f96f5bf548
2 changed files with 3 additions and 3 deletions

View file

@ -86,7 +86,7 @@ class HofriGhostforgeEffect extends OneShotEffect {
super(Outcome.Benefit); super(Outcome.Benefit);
staticText = "exile it. If you do, create a token that's a copy of that creature, " + staticText = "exile it. If you do, create a token that's a copy of that creature, " +
"except it's a Spirit in addition to its other types and it has " + "except it's a Spirit in addition to its other types and it has " +
"\"When this creature leaves the battlefield, return the exiled card to your graveyard.\""; "\"When this creature leaves the battlefield, return the exiled card to its owner's graveyard.\"";
} }
private HofriGhostforgeEffect(final HofriGhostforgeEffect effect) { private HofriGhostforgeEffect(final HofriGhostforgeEffect effect) {
@ -125,7 +125,7 @@ class HofriGhostforgeReturnEffect extends OneShotEffect {
HofriGhostforgeReturnEffect(Card card, Game game) { HofriGhostforgeReturnEffect(Card card, Game game) {
super(Outcome.Benefit); super(Outcome.Benefit);
this.mor = new MageObjectReference(card, game); this.mor = new MageObjectReference(card, game);
staticText = "return the exiled card to your graveyard"; staticText = "return the exiled card to its owner's graveyard";
} }
private HofriGhostforgeReturnEffect(final HofriGhostforgeReturnEffect effect) { private HofriGhostforgeReturnEffect(final HofriGhostforgeReturnEffect effect) {

View file

@ -50,6 +50,6 @@ public class EntersBattlefieldOrLeavesSourceTriggeredAbility extends TriggeredAb
@Override @Override
public String getRule() { public String getRule() {
return "When {this} enters the battlefield or leaves the battlefield, " + super.getRule(); return "When {this} enters or leaves the battlefield, " + super.getRule();
} }
} }