From b899ca3b5f18c363726f58c52db20faf8d8e29ef Mon Sep 17 00:00:00 2001 From: SpikesCafe-google Date: Sun, 21 Jan 2018 00:16:24 -0500 Subject: [PATCH] Update ReyhanLastOfTheAbzan.java --- Mage.Sets/src/mage/cards/r/ReyhanLastOfTheAbzan.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/r/ReyhanLastOfTheAbzan.java b/Mage.Sets/src/mage/cards/r/ReyhanLastOfTheAbzan.java index 154a0c20c74..641eb5a4c08 100644 --- a/Mage.Sets/src/mage/cards/r/ReyhanLastOfTheAbzan.java +++ b/Mage.Sets/src/mage/cards/r/ReyhanLastOfTheAbzan.java @@ -118,8 +118,9 @@ class ReyhanLastOfTheAbzanTriggeredAbility extends TriggeredAbilityImpl { } Permanent permanent = (Permanent) game.getLastKnownInformation(event.getTargetId(), Zone.BATTLEFIELD); + Player player = game.getPlayer(source.getControllerId()); // A creature you control - if (!permanent.getControllerId().equals(this.getControllerId()) || !permanent.isCreature()) { + if (player == null || !player.equals(this.getControllerId()) || permanent == null || !permanent.isCreature()) { return false; }