mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 05:09:16 -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
|
|
@ -91,7 +91,7 @@ class ReyhanLastOfTheAbzanTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// A creature
|
// A creature
|
||||||
Permanent permanent = (Permanent) game.getLastKnownInformation(event.getTargetId(), Zone.BATTLEFIELD);
|
Permanent permanent = (Permanent) game.getLastKnownInformation(event.getTargetId(), Zone.BATTLEFIELD);
|
||||||
if (permanent == null || !permanent.isCreature()) {
|
if (permanent == null || !permanent.isCreature()) {
|
||||||
return false;
|
return false;
|
||||||
|
|
@ -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