diff --git a/client/CServerHandler.h b/client/CServerHandler.h index 7ba5655b8..59c354415 100644 --- a/client/CServerHandler.h +++ b/client/CServerHandler.h @@ -146,7 +146,7 @@ public: void sendMessage(const std::string & txt) const override; void sendGuiAction(ui8 action) const override; void sendRestartGame() const override; - void sendStartGame(bool allowOnlyAI = true) const override; + void sendStartGame(bool allowOnlyAI = false) const override; void startGameplay(VCMI_LIB_WRAP_NAMESPACE(CGameState) * gameState = nullptr); void endGameplay(bool closeConnection = true, bool restart = false); diff --git a/client/lobby/CLobbyScreen.h b/client/lobby/CLobbyScreen.h index 8cebf7b2b..962547fa4 100644 --- a/client/lobby/CLobbyScreen.h +++ b/client/lobby/CLobbyScreen.h @@ -22,7 +22,7 @@ public: ~CLobbyScreen(); void toggleTab(std::shared_ptr tab) override; void startCampaign(); - void startScenario(bool allowOnlyAI = true); + void startScenario(bool allowOnlyAI = false); void toggleMode(bool host); void toggleChat();