mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08: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…
Add table
Add a link
Reference in a new issue