diff --git a/engine/server/application/PlanetServer/src/shared/GameServerConnection.cpp b/engine/server/application/PlanetServer/src/shared/GameServerConnection.cpp index 1fb0d52c..f2a60fbb 100755 --- a/engine/server/application/PlanetServer/src/shared/GameServerConnection.cpp +++ b/engine/server/application/PlanetServer/src/shared/GameServerConnection.cpp @@ -75,7 +75,7 @@ void GameServerConnection::onReceive(Archive::ByteStream const &message) } else { - switch (msgType) { + switch (messageType) { case constcrc("EndForward") : { if (--m_forwardCounts.back() == 0) @@ -103,7 +103,7 @@ void GameServerConnection::onReceive(Archive::ByteStream const &message) } } - if (msgType == constcrc("BeginForward")) + if (messageType == constcrc("BeginForward")) { GenericValueTypeMessage > const beginForwardMessage(ri);