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.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/netconnection.cc b/src/core/netconnection.cc
index 455c03d..b87477b 100644
--- a/src/core/netconnection.cc
+++ b/src/core/netconnection.cc
@@ -154,7 +154,7 @@ void NetConnection::parse_incoming_message(const std::string & message)
msgstream >> id;
Entity *e = Entity::find(id);
- con_debug << "Received die entity id " << id << "\n";
+ //con_debug << "Received die entity id " << id << "\n";
if (localcontrol() == e)
localplayer()->player_control = 0;
@@ -165,7 +165,7 @@ void NetConnection::parse_incoming_message(const std::string & message)
unsigned int type;
msgstream >> type;
- con_debug << "Received create entity type " << type << "\n";
+ //con_debug << "Received create entity type " << type << "\n";
switch (type)
{
case Entity::Default: