X-Git-Url: https://plomlompom.com/repos/?p=plomrogue2-experiments;a=blobdiff_plain;f=new2%2Fplomrogue%2Fcommands.py;h=28b76006fe8088ffcc3d93bc64a455f71db8348b;hp=9e67ce02600682eaa12823c3d63bf7c6ffaed6a8;hb=f7f11798a90187ab83d038f737368317a99e15b0;hpb=beebfdb7dac8e7630643c44e9ae8d3c79d5d39d8 diff --git a/new2/plomrogue/commands.py b/new2/plomrogue/commands.py index 9e67ce0..28b7600 100644 --- a/new2/plomrogue/commands.py +++ b/new2/plomrogue/commands.py @@ -49,8 +49,7 @@ def cmd_TURN(game, n): game.turn = n cmd_TURN.argtypes = 'int:nonneg' -#def cmd_ANNOTATE(game, yx, connection_id): -def cmd_ANNOTATE(game, yx, msg): +def cmd_ANNOTATE(game, yx, msg, connection_id): if msg == ' ': if yx in game.annotations: del game.annotations[yx] @@ -66,7 +65,6 @@ def cmd_GET_ANNOTATION(game, yx, connection_id): game.io.send('ANNOTATION %s %s' % (yx, quote(annotation))) cmd_GET_ANNOTATION.argtypes = 'yx_tuple:nonneg' -# TODO: disallow these commands from clients? (maybe by failing on connection_id?) def cmd_MAP_LINE(game, y, line): game.map.set_line(y, line) cmd_MAP_LINE.argtypes = 'int:nonneg string'