mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 13:19:18 -08:00
* Reyhan, Last of the Abzan - Fixed that the triggered ability did not only work for controlled creatures.
This commit is contained in:
parent
99864ccf5b
commit
fdb970c644
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue