mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
This commit is contained in:
parent
4232b1e789
commit
91df970a87
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ public class ReturnToHandAttachedEffect extends OneShotEffect {
|
|||
return false;
|
||||
}
|
||||
Card card = permanent.getMainCard();
|
||||
if (permanent.getZoneChangeCounter(game) != card.getZoneChangeCounter(game) + 1) {
|
||||
if (permanent.getZoneChangeCounter(game) + 1 != card.getZoneChangeCounter(game)) {
|
||||
return false;
|
||||
}
|
||||
return player.moveCards(card, Zone.HAND, source, game);
|
||||
|
|
Loading…
Reference in a new issue