Refactor: remove second param from CardZone::getCard (#6041)

This commit is contained in:
RickyRister 2025-07-16 02:54:31 -07:00 committed by GitHub
parent a9b3be33e0
commit 95190c321c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 22 additions and 17 deletions

View file

@ -1215,7 +1215,7 @@ CardItem *TabGame::getCard(int playerId, const QString &zoneName, int cardId) co
if (!zone)
return nullptr;
return zone->getCard(cardId, QString());
return zone->getCard(cardId);
}
QString TabGame::getTabText() const