home · contact · privacy
Add (temporary?) debug info on joins/parts/session numbers.
[plomrogue2] / plomrogue / commands.py
index a7b704efeee714eb446a82d60d7a41cf57abe077..9f7bfff6604bb7c3223d5798a526d7e4947f8553 100644 (file)
@@ -128,6 +128,7 @@ def cmd_NICK(game, nick, connection_id):
         raise GameError('can only rename when already logged in')
     old_nick = t.name
     t.name = nick
+    print('DEBUG RENAME %s %s' % (old_nick, nick))
     game.io.send('CHAT ' + quote(old_nick + ' renamed themselves to ' + nick))
     game.changed = True
     game.record_change(t.position, 'other')