home · contact · privacy
Minor fixes.
[plomrogue2-experiments] / new2 / plomrogue / commands.py
index 96c5d226dedd400d2c14717d3207e004dae90432..dc65375417cf46f2e7ea667e9529de1d3e706c4b 100644 (file)
@@ -11,6 +11,7 @@ def cmd_ALL(game, msg, connection_id):
     game.io.send('CHAT ' + quote(t.nickname + ': ' + msg))
 cmd_ALL.argtypes = 'string'
 
+# TOOD split into two commands
 def cmd_LOGIN(game, nick, connection_id):
     for t in [t for t in game.things if t.type_ == 'player' and t.nickname == nick]:
         raise GameError('name already in use')