home · contact · privacy
Allow space char for TASK:WRITE.
[plomrogue2-experiments] / new2 / plomrogue / game.py
index 52e0d600e37b2f90fcc3209d704c2d0866f330e2..8fb264447d5c2e30f757d2d507c9e62e5a3ee84d 100755 (executable)
@@ -71,7 +71,7 @@ class Game(GameBase):
             return self.map_geometry.get_directions()
         if string_option_type == 'char':
             return [c for c in
-                    string.digits + string.ascii_letters + string.punctuation]
+                    string.digits + string.ascii_letters + string.punctuation + ' ']
         return None
 
     def send_gamestate(self, connection_id=None):