mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
Update ReyhanLastOfTheAbzan.java
This commit is contained in:
parent
57a9c04032
commit
b899ca3b5f
1 changed files with 2 additions and 1 deletions
|
@ -118,8 +118,9 @@ class ReyhanLastOfTheAbzanTriggeredAbility extends TriggeredAbilityImpl {
|
|||
}
|
||||
|
||||
Permanent permanent = (Permanent) game.getLastKnownInformation(event.getTargetId(), Zone.BATTLEFIELD);
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
// A creature you control
|
||||
if (!permanent.getControllerId().equals(this.getControllerId()) || !permanent.isCreature()) {
|
||||
if (player == null || !player.equals(this.getControllerId()) || permanent == null || !permanent.isCreature()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue