[Game] Allow dropping cards at bottom of stack zone

This commit is contained in:
RickyRister 2026-09-01 02:35:56 -07:00
parent 45c7ff6f87
commit abebf211ba
4 changed files with 14 additions and 7 deletions

View file

@ -41,7 +41,8 @@ void HandZone::handleDropEvent(const QList<CardDragItem *> &dragItems,
}
}
} else {
x = calcDropIndexFromY(dropPoint.y());
bool sameZone = startZone == getLogic();
x = calcDropIndexFromY(dropPoint.y(), !sameZone);
}
Command_MoveCard cmd;