mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
fixed Reyhan, Last of the Abzan only triggering for opponents' creatures
This commit is contained in:
parent
5ba0717086
commit
1fde140dd1
1 changed files with 5 additions and 6 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.r;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -100,7 +99,7 @@ class ReyhanLastOfTheAbzanTriggeredAbility extends TriggeredAbilityImpl {
|
|||
|
||||
// You control
|
||||
Player player = game.getPlayer(this.getControllerId());
|
||||
if (player == null || !player.getId().equals(this.getControllerId())) {
|
||||
if (player == null || !permanent.getControllerId().equals(player.getId())) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue