diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/netserver.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/netserver.cc b/src/core/netserver.cc index 2d59788..f004f83 100644 --- a/src/core/netserver.cc +++ b/src/core/netserver.cc @@ -567,7 +567,7 @@ void NetServer::parse_incoming_message(NetClient *client, const std::string & me return; } - if (entity->type() == Entity::Controlable) { + if (entity->type() != Entity::Controlable) { con_warn << client->host() << ":" << client->port() << " update for non-controlable entity " << id << "\n"; return; } |