Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/netconnection.cc')
-rw-r--r--src/core/netconnection.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/netconnection.cc b/src/core/netconnection.cc
index fd844aa..3c68be9 100644
--- a/src/core/netconnection.cc
+++ b/src/core/netconnection.cc
@@ -338,7 +338,7 @@ void NetConnection::send_raw(std::string const &msg)
void NetConnection::send_connect()
{
std::ostringstream msg;
- msg << "connect " << PROTOCOLVERSION << "\n";
+ msg << "connect " << PROTOCOLVERSION << " " << localplayer()->guid().str() << "\n";
this->send_raw(msg.str());
}