Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2009-11-12 20:53:35 +0000
committerStijn Buys <ingar@osirion.org>2009-11-12 20:53:35 +0000
commit5ddb64795cc959916eeedbec8dc3f65c06f49698 (patch)
treeee7231607b0bf49528570e5d3badcdedcb33f54e /src/core/netserver.cc
parent3605a7bd8fffebfba38d31025b6f33cb82626a3b (diff)
initial commodities and entity inventory, bump network proto version to 18
Diffstat (limited to 'src/core/netserver.cc')
-rw-r--r--src/core/netserver.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/netserver.cc b/src/core/netserver.cc
index 1ae928b..c4eef11 100644
--- a/src/core/netserver.cc
+++ b/src/core/netserver.cc
@@ -562,7 +562,7 @@ void NetServer::send_player_disconnect_info(NetClient *client, Player *player)
void NetServer::send_info_update(NetClient *client, Info *info)
{
std::ostringstream msg;
- msg << "inf " << '"' << info->label() << '"' << ' ';
+ msg << "inf " << info->id() << ' ';
info->serialize_server_update(msg);
msg << '\n';
client->send_raw(msg.str());