* 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

@ -99,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 || !permanent.getControllerId().equals(player.getId())) { if (player == null || !permanent.getControllerId().equals(getControllerId())) {
return false; return false;
} }