X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/static/gitweb.css?a=blobdiff_plain;f=plomrogue%2Fcommands.py;h=85ec5d31b2d4c3c40ae1bf0ee0a3f9e877e00167;hb=46108644f062458df5b0540f806abffab650683f;hp=f6744aca92e037d132effc9ebd0b8dcae9e05d13;hpb=da3b93d7a4bd66aef5860bb5a7099e89ab18024c;p=plomrogue2 diff --git a/plomrogue/commands.py b/plomrogue/commands.py index f6744ac..85ec5d3 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -72,8 +72,8 @@ def cmd_TURN(game, n): game.turn = n cmd_TURN.argtypes = 'int:nonneg' -def cmd_ANNOTATE(game, pw, yx, msg, connection_id): - if not game.can_do_tile_with_pw(yx, pw): +def cmd_ANNOTATE(game, yx, msg, pw=None, connection_id=None): + if connection_id and not game.can_do_tile_with_pw(yx, pw): raise GameError('wrong password for tile') if msg == ' ': if yx in game.annotations: @@ -81,10 +81,10 @@ def cmd_ANNOTATE(game, pw, yx, msg, connection_id): else: game.annotations[yx] = msg game.changed = True -cmd_ANNOTATE.argtypes = 'string yx_tuple:nonneg string' +cmd_ANNOTATE.argtypes = 'yx_tuple:nonneg string string' -def cmd_PORTAL(game, pw, yx, msg, connection_id): - if not game.can_do_tile_with_pw(yx, pw): +def cmd_PORTAL(game, yx, msg, pw=None, connection_id=None): + if connection_id and not game.can_do_tile_with_pw(yx, pw): raise GameError('wrong password for tile') if msg == ' ': if yx in game.portals: @@ -92,7 +92,7 @@ def cmd_PORTAL(game, pw, yx, msg, connection_id): else: game.portals[yx] = msg game.changed = True -cmd_PORTAL.argtypes = 'string yx_tuple:nonneg string' +cmd_PORTAL.argtypes = 'yx_tuple:nonneg string string' def cmd_GET_ANNOTATION(game, yx, connection_id): annotation = '(none)';