From 1a9ee7b0b928836a9bd33a7de44c637fe84772f2 Mon Sep 17 00:00:00 2001 From: Noah Gleason Date: Sat, 23 Jun 2018 21:52:36 -0400 Subject: [PATCH] Update to ungendered wording --- Mage.Sets/src/mage/cards/p/Prophecy.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/p/Prophecy.java b/Mage.Sets/src/mage/cards/p/Prophecy.java index dd58eccb41..e8c1e6260f 100644 --- a/Mage.Sets/src/mage/cards/p/Prophecy.java +++ b/Mage.Sets/src/mage/cards/p/Prophecy.java @@ -29,7 +29,7 @@ public final class Prophecy extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{W}"); - // Reveal the top card of target opponent's library. If it's a land, you gain 1 life. Then that player shuffles his or her library. + // Reveal the top card of target opponent's library. If it's a land, you gain 1 life. Then that player shuffles their library. this.getSpellAbility().addEffect(new ProphecyEffect()); this.getSpellAbility().addTarget(new TargetOpponent()); @@ -51,7 +51,7 @@ class ProphecyEffect extends OneShotEffect { public ProphecyEffect() { super(Outcome.GainLife); - this.staticText = "Reveal the top card of target opponent's library. If it's a land, you gain 1 life. Then that player shuffles his or her library"; + this.staticText = "Reveal the top card of target opponent's library. If it's a land, you gain 1 life. Then that player shuffles their library"; } public ProphecyEffect(final ProphecyEffect effect) {