--- a/gameServer/HWProtoCore.hs Wed Oct 17 23:33:33 2012 +0400
+++ b/gameServer/HWProtoCore.hs Wed Oct 17 23:50:28 2012 +0400
@@ -51,7 +51,7 @@
let clRoom = room rnc roomId
let roomMasterSign = if isMaster cl then "@" else ""
let adminSign = if isAdministrator cl then "@" else ""
- let roomInfo = if roomId /= lobbyId then B.concat [roomMasterSign, "room ", name clRoom] else adminSign `B.append` "lobby"
+ let rInfo = if roomId /= lobbyId then B.concat [roomMasterSign, "room ", name clRoom] else adminSign `B.append` "lobby"
let roomStatus = if isJust $ gameInfo clRoom then
if teamsInGame cl > 0 then "(playing)" else "(spectating)"
else
@@ -65,7 +65,7 @@
nick cl,
B.concat ["[", hostStr, "]"],
protoNumber2ver $ clientProto cl,
- B.concat ["[", roomInfo, "]", roomStatus]
+ B.concat ["[", rInfo, "]", roomStatus]
]