From fdb970c644bc3862a4fbb6aa89b0cd8701d1c367 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 10 Jun 2018 10:43:01 +0200 Subject: [PATCH] * Reyhan, Last of the Abzan - Fixed that the triggered ability did not only work for controlled creatures. --- Mage.Sets/src/mage/cards/r/ReyhanLastOfTheAbzan.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/r/ReyhanLastOfTheAbzan.java b/Mage.Sets/src/mage/cards/r/ReyhanLastOfTheAbzan.java index 1e82c953cf3..a814fc7a9fa 100644 --- a/Mage.Sets/src/mage/cards/r/ReyhanLastOfTheAbzan.java +++ b/Mage.Sets/src/mage/cards/r/ReyhanLastOfTheAbzan.java @@ -91,7 +91,7 @@ class ReyhanLastOfTheAbzanTriggeredAbility extends TriggeredAbilityImpl { return false; } - // A creature + // A creature Permanent permanent = (Permanent) game.getLastKnownInformation(event.getTargetId(), Zone.BATTLEFIELD); if (permanent == null || !permanent.isCreature()) { return false; @@ -99,7 +99,7 @@ class ReyhanLastOfTheAbzanTriggeredAbility extends TriggeredAbilityImpl { // You control Player player = game.getPlayer(this.getControllerId()); - if (player == null || !permanent.getControllerId().equals(player.getId())) { + if (player == null || !permanent.getControllerId().equals(getControllerId())) { return false; }