# HG changeset patch # User Wuzzy # Date 1538668508 -7200 # Node ID b07610de9957289000ba02131d3f1efcdd0f5108 # Parent d1f7a8a11526fc54b87d042f5733cd2300230506 gameServer: Remove broken and undocumented /part chat command If a player used it, a lot of protocol errors start to happen. diff -r d1f7a8a11526 -r b07610de9957 gameServer/HWProtoCore.hs --- a/gameServer/HWProtoCore.hs Thu Oct 04 17:46:01 2018 +0200 +++ b/gameServer/HWProtoCore.hs Thu Oct 04 17:55:08 2018 +0200 @@ -78,8 +78,6 @@ h "SAVE" n | not $ B.null n = let (sn, ln) = B.break (== ' ') n in if B.null ln then return [] else handleCmd ["SAVE", sn, B.tail ln] h "DELETE" n | not $ B.null n = handleCmd ["DELETE", n] h "STATS" _ = handleCmd ["STATS"] - h "PART" m | not $ B.null m = handleCmd ["PART", m] - | otherwise = handleCmd ["PART"] h "QUIT" m | not $ B.null m = handleCmd ["QUIT", m] | otherwise = handleCmd ["QUIT"] h "RND" p = handleCmd ("RND" : B.words p)