diff -r d7cd5b43588f -r 7025bd3c3131 gameServer/HWProtoCore.hs --- a/gameServer/HWProtoCore.hs Wed Mar 12 22:40:49 2014 -0400 +++ b/gameServer/HWProtoCore.hs Thu Mar 13 23:25:31 2014 +0400 @@ -36,6 +36,8 @@ handleCmd ["CMD", parameters] = uncurry h $ extractParameters parameters where h "DELEGATE" n | not $ B.null n = handleCmd ["DELEGATE", n] + h "SAVE" n | not $ B.null n = handleCmd ["SAVE", n] + 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"]