diff options
-rw-r--r-- | src/core/netserver.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/netserver.cc b/src/core/netserver.cc index 17fef86..cbb2dc7 100644 --- a/src/core/netserver.cc +++ b/src/core/netserver.cc @@ -294,6 +294,7 @@ NetClient * NetServer::client_connect(std::string const host, int const port) clients.push_back(client); client->player()->set_dirty(false); + client->player()->reputation().set_dirty(false); return client; } @@ -900,7 +901,7 @@ void NetServer::parse_incoming_message(NetClient *client, const std::string & me Info *info = 0; if (id) { - info = Info::find(id); + info = Info::find(id); if (info) { //con_debug << "Sending info for " << info->id() << " " << info->type()->label() << ":" << info->label() << std::endl; send_info_update(client, info); |