# HG changeset patch # User sheepluva # Date 1416593385 -3600 # Node ID 2bc0ff00e95b995c6bdaaa4f063cbf7a88896e45 # Parent 00ac079fa51fef91f7d4a6ffff91bc582b68af30 password flag was the wrong way around diff -r 00ac079fa51f -r 2bc0ff00e95b gameServer/Utils.hs --- a/gameServer/Utils.hs Fri Nov 21 02:03:19 2014 +0100 +++ b/gameServer/Utils.hs Fri Nov 21 19:09:45 2014 +0100 @@ -184,7 +184,7 @@ roomFlags = concat [ "-" , ['g' | isJust $ gameInfo r] - , ['p' | B.null $ password r] + , ['p' | not . B.null $ password r] , ['j' | isRestrictedJoins r] , ['r' | isRegisteredOnly r] ]