diff --git a/include/game/client/Client.h b/include/game/client/Client.h index 06c26de..cf3386c 100644 --- a/include/game/client/Client.h +++ b/include/game/client/Client.h @@ -15,7 +15,7 @@ private: ClientGame m_Game{m_Connexion.GetDispatcher()}; bool m_Connected; public: - Client(){} + Client() : m_Connected(false){} const ClientGame& getGame() const{ return m_Game; } const ClientConnexion& getConnexion() const{ return m_Connexion; }