mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
Fix move to top of library shuffling an extra card (#5672)
* Fix move to top of library shuffling an extra card * Update cockatrice/src/game/player/player.cpp --------- Co-authored-by: ebbit1q <ebbit1q@gmail.com>
This commit is contained in:
parent
448903efe3
commit
58a2b7ff39
1 changed files with 1 additions and 1 deletions
|
|
@ -3186,7 +3186,7 @@ void Player::cardMenuAction()
|
|||
auto *scmd = new Command_Shuffle;
|
||||
scmd->set_zone_name("deck");
|
||||
scmd->set_start(0);
|
||||
scmd->set_end(idList.card_size());
|
||||
scmd->set_end(idList.card_size() - 1); // inclusive, the indexed card at end will be shuffled
|
||||
// Server process events backwards, so...
|
||||
commandList.append(scmd);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue