mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-10 12:23:58 -07:00
[Fix-Warnings] Follow suggestion.
This commit is contained in:
parent
8ddbdf31f9
commit
f4dc3fb891
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ void PlayerActions::playCard(CardItem *card, bool faceDown)
|
||||||
cmd.set_x(0);
|
cmd.set_x(0);
|
||||||
cmd.set_y(0);
|
cmd.set_y(0);
|
||||||
} else if (!faceDown &&
|
} else if (!faceDown &&
|
||||||
((!playToStack && tableRow == 3) || playToStack && tableRow != 0 && currentZone != "stack")) {
|
((!playToStack && tableRow == 3) || (playToStack && tableRow != 0 && currentZone != "stack"))) {
|
||||||
cmd.set_target_zone("stack");
|
cmd.set_target_zone("stack");
|
||||||
cmd.set_x(-1);
|
cmd.set_x(-1);
|
||||||
cmd.set_y(0);
|
cmd.set_y(0);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue