- Tokens with different P/T will no longer stack.

This commit is contained in:
Sloth
2011-10-20 12:39:31 +00:00
parent efb3782073
commit 9fb331a8a6

View File

@@ -121,6 +121,8 @@ public class PlayArea extends CardPanelContainer implements CardPanelMouseListen
} }
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() || panel.gameCard.isSick() != firstPanel.gameCard.isSick()
|| panel.gameCard.getNetAttack() != firstPanel.gameCard.getNetAttack()
|| panel.gameCard.getNetDefense() != firstPanel.gameCard.getNetDefense()
|| 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;