mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
fix cleanup time
This commit is contained in:
parent
65dce362b4
commit
a2344ea781
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ public abstract class DelayedTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
// 800.4d. If an object that would be owned by a player who has left the game would be created in any zone, it isn't created.
|
// 800.4d. If an object that would be owned by a player who has left the game would be created in any zone, it isn't created.
|
||||||
// If a triggered ability that would be controlled by a player who has left the game would be put onto the stack, it isn't put on the stack.
|
// If a triggered ability that would be controlled by a player who has left the game would be put onto the stack, it isn't put on the stack.
|
||||||
Player player = game.getPlayer(getControllerId());
|
Player player = game.getPlayer(getControllerId());
|
||||||
boolean canDelete = player == null || (!player.isInGame() && player.hasReachedNextTurnAfterLeaving());
|
boolean canDelete = player == null || !player.isInGame();
|
||||||
return canDelete;
|
return canDelete;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue