mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-18 00:12:15 -07:00
Remove unnecessary parentheses.
Took 16 minutes
This commit is contained in:
parent
aff775f488
commit
2e017850c2
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ void GameScene::rearrange()
|
|||
Player *p = playersIter.next()->getPlayer();
|
||||
if (p && !p->getConceded()) {
|
||||
playersPlaying.append(p);
|
||||
if (!firstPlayerFound && (p->getPlayerInfo()->getLocal())) {
|
||||
if (!firstPlayerFound && p->getPlayerInfo()->getLocal()) {
|
||||
firstPlayerIndex = playersPlaying.size() - 1;
|
||||
firstPlayerFound = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue