diff --git a/src/client/protocolgameparse.cpp b/src/client/protocolgameparse.cpp index 263a8f3c..647a81d6 100644 --- a/src/client/protocolgameparse.cpp +++ b/src/client/protocolgameparse.cpp @@ -385,7 +385,7 @@ void ProtocolGame::parseGMActions(const InputMessagePtr& msg) int numViolationReasons; - if(g_game.getProtocolVersion() >= 854) + if(g_game.getProtocolVersion() >= 850) numViolationReasons = 20; else numViolationReasons = 32; @@ -535,7 +535,7 @@ void ProtocolGame::parseTileAddThing(const InputMessagePtr& msg) Position pos = getPosition(msg); int stackPos = -1; - if(g_game.getProtocolVersion() >= 854) + if(g_game.getProtocolVersion() >= 850) stackPos = msg->getU8(); ThingPtr thing = getThing(msg);