Default to one player
I think the majority of players use this feature for goldfishing/practicing. Defaulting to one player for convenience.
This commit is contained in:
parent
fb49a8867e
commit
986eab4d40
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ void MainWindow::actDisconnect()
|
||||||
void MainWindow::actSinglePlayer()
|
void MainWindow::actSinglePlayer()
|
||||||
{
|
{
|
||||||
bool ok;
|
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)
|
if (!ok)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue