mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -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;
|
||||
}
|
||||
|
||||
// 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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue