* Reyhan, Last of the Abzan - Fixed that the triggered ability did not only work for controlled creatures.

This commit is contained in:
LevelX2 2018-06-10 10:43:01 +02:00
parent 99864ccf5b
commit fdb970c644

View file

@ -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;
}