From 986eab4d406326266fc170d4cf26b80e3c07ac6b Mon Sep 17 00:00:00 2001 From: Matt Lowe Date: Thu, 2 Apr 2015 13:23:39 +0200 Subject: [PATCH] Default to one player I think the majority of players use this feature for goldfishing/practicing. Defaulting to one player for convenience. --- cockatrice/src/window_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/window_main.cpp b/cockatrice/src/window_main.cpp index ade53419..4fbe554a 100644 --- a/cockatrice/src/window_main.cpp +++ b/cockatrice/src/window_main.cpp @@ -135,7 +135,7 @@ void MainWindow::actDisconnect() void MainWindow::actSinglePlayer() { bool ok; - int numberPlayers = QInputDialog::getInt(this, tr("Number of players"), tr("Please enter the number of players."), 2, 1, 8, 1, &ok); + int numberPlayers = QInputDialog::getInt(this, tr("Number of players"), tr("Please enter the number of players."), 1, 1, 8, 1, &ok); if (!ok) return;