Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 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;
}