From 567c1a148daa000e03ae94157b9d96cc01eae5b8 Mon Sep 17 00:00:00 2001 From: woogerboy21 Date: Sat, 8 Aug 2015 17:08:43 -0400 Subject: [PATCH] Fix local game due to clientid check in response container. --- cockatrice/src/localclient.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cockatrice/src/localclient.cpp b/cockatrice/src/localclient.cpp index 3ad7c809..92bc4ff3 100644 --- a/cockatrice/src/localclient.cpp +++ b/cockatrice/src/localclient.cpp @@ -10,6 +10,7 @@ LocalClient::LocalClient(LocalServerInterface *_lsi, const QString &_playerName, Command_Login loginCmd; loginCmd.set_user_name(_playerName.toStdString()); + loginCmd.set_clientid("notneeded"); sendCommand(prepareSessionCommand(loginCmd)); Command_JoinRoom joinCmd;