- Tokens with different summoning sickness will no longer stack.

This commit is contained in:
Sloth
2011-10-06 14:26:12 +00:00
parent 6d8ead088e
commit bd6e1ecdd1

View File

@@ -119,7 +119,8 @@ public class PlayArea extends CardPanelContainer implements CardPanelMouseListen
insertIndex = i; insertIndex = i;
break; break;
} }
if (!panel.attachedPanels.isEmpty() || !panel.gameCard.getCounters().equals(firstPanel.gameCard.getCounters()) if (!panel.attachedPanels.isEmpty() || !panel.gameCard.getCounters().equals(firstPanel.gameCard.getCounters())
|| panel.gameCard.isSick() != firstPanel.gameCard.isSick()
|| stack.size() == tokenStackMax) { || stack.size() == tokenStackMax) {
// If this token has attachments or the stack is full, put it to the right. // If this token has attachments or the stack is full, put it to the right.
insertIndex = i + 1; insertIndex = i + 1;