diff options
author | Stijn Buys <ingar@osirion.org> | 2008-03-08 16:25:20 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-03-08 16:25:20 +0000 |
commit | 7a62f99554c248724c42537363f2665df9748945 (patch) | |
tree | 252d1f3a1175c94f1f0b33772955cb260891eb94 /src/core | |
parent | b56c5b7a6fa8330b09bb65f270b5a6a7281367d3 (diff) |
compiling with gcc 4.2.3 verified
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/netconnection.cc | 4 |
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: |