From 2e017850c2bc278c6ed37ee116a4367929776cdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Mon, 15 Sep 2025 09:35:16 +0200 Subject: [PATCH] Remove unnecessary parentheses. Took 16 minutes --- cockatrice/src/game/game_scene.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/game/game_scene.cpp b/cockatrice/src/game/game_scene.cpp index 1494661d7..a9bce298a 100644 --- a/cockatrice/src/game/game_scene.cpp +++ b/cockatrice/src/game/game_scene.cpp @@ -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; }