Update to ungendered wording

This commit is contained in:
Noah Gleason 2018-06-23 21:52:36 -04:00 committed by GitHub
parent d9c7daaf52
commit 1a9ee7b0b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) {