From 3dc214c2035c4e4540aa93b8c042d38cb79f16fd Mon Sep 17 00:00:00 2001 From: Zzooouhh Date: Thu, 27 Jul 2017 23:39:07 +0200 Subject: [PATCH] Fix for #3740 --- Mage.Sets/src/mage/cards/w/WordsOfWorship.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/w/WordsOfWorship.java b/Mage.Sets/src/mage/cards/w/WordsOfWorship.java index 732215ce0db..2bd7329fcc9 100644 --- a/Mage.Sets/src/mage/cards/w/WordsOfWorship.java +++ b/Mage.Sets/src/mage/cards/w/WordsOfWorship.java @@ -92,6 +92,7 @@ class WordsOfWorshipEffect extends ReplacementEffectImpl { Player controller = game.getPlayer(source.getControllerId()); if (controller != null) { controller.gainLife(5, game); + this.used = true; discard(); return true; } @@ -105,6 +106,9 @@ class WordsOfWorshipEffect extends ReplacementEffectImpl { @Override public boolean applies(GameEvent event, Ability source, Game game) { - return source.getControllerId().equals(event.getPlayerId()); + if (!this.used) { + return source.getControllerId().equals(event.getPlayerId()); + } + return false; } -} \ No newline at end of file +}