fixed Reyhan, Last of the Abzan only triggering for opponents' creatures

This commit is contained in:
Evan Kranzler 2018-06-07 08:54:02 -04:00
parent 5ba0717086
commit 1fde140dd1

View file

@ -1,4 +1,3 @@
package mage.cards.r; package mage.cards.r;
import java.util.UUID; import java.util.UUID;
@ -100,7 +99,7 @@ class ReyhanLastOfTheAbzanTriggeredAbility extends TriggeredAbilityImpl {
// You control // You control
Player player = game.getPlayer(this.getControllerId()); Player player = game.getPlayer(this.getControllerId());
if (player == null || !player.getId().equals(this.getControllerId())) { if (player == null || !permanent.getControllerId().equals(player.getId())) {
return false; return false;
} }