From de7a01a7767780e025e1c8d89cdc54c7f0045e50 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Tue, 14 Jan 2020 04:07:20 +0400 Subject: [PATCH] fixed Funeral Rites (wrong text) --- Mage.Sets/src/mage/cards/f/FuneralRites.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/cards/f/FuneralRites.java b/Mage.Sets/src/mage/cards/f/FuneralRites.java index 70e59727e6..54bd67e94e 100644 --- a/Mage.Sets/src/mage/cards/f/FuneralRites.java +++ b/Mage.Sets/src/mage/cards/f/FuneralRites.java @@ -17,13 +17,13 @@ public final class FuneralRites extends CardImpl { public FuneralRites(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{B}"); - // You draw two cards, lose 2 life, and put the top two cards of your library into your graveyard, + // You draw two cards, lose 2 life, and put the top two cards of your library into your graveyard this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(2) - .setText("you draw two cards,")); + .setText("You draw two cards")); this.getSpellAbility().addEffect(new LoseLifeSourceControllerEffect(2) - .setText("lose 2 life,")); + .setText(", lose 2 life")); this.getSpellAbility().addEffect(new PutTopCardOfLibraryIntoGraveControllerEffect(2) - .concatBy("and")); + .concatBy(", and")); } private FuneralRites(final FuneralRites card) {