refactor: remove cipt param from Player::playCard (#5266)

This commit is contained in:
RickyRister 2024-12-18 18:46:14 -08:00 committed by GitHub
parent 245d51caea
commit c716f85962
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 10 additions and 15 deletions

View file

@ -319,8 +319,7 @@ void ArrowAttachItem::attachCards(CardItem *startCard, const CardItem *targetCar
// move card onto table first if attaching from some other zone
if (startZone->getName() != "table") {
auto info = startCard->getInfo();
player->playCardToTable(startCard, false, info ? info->getCipt() : false);
player->playCardToTable(startCard, false);
}
Command_AttachCard cmd;