X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7B%20card_id%20%7D%7D/delete?a=blobdiff_plain;f=plomrogue%2Fcommands.py;h=12389c653d9584da3f4260bf4f59dbb92ed19f85;hb=d5f31d8172456933650aee47f8fe730d98839181;hp=fd0863284f04c550fb623dd936070bc65f63ba79;hpb=3d9cd33d98bf022b5a30f9944d168ff4f9664329;p=plomrogue2 diff --git a/plomrogue/commands.py b/plomrogue/commands.py index fd08632..12389c6 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -92,17 +92,17 @@ def cmd_PORTAL(game, yx, msg, pw, connection_id): else: game.portals[yx] = msg game.changed = True -cmd_PORTAL.argtypes = 'yx_tuple:nonneg string string' +cmd_GOD_PORTAL.argtypes = 'yx_tuple:nonneg string string' def cmd_GOD_ANNOTATE(game, yx, msg): game.annotations[yx] = msg game.changed = True -cmd_ANNOTATE.argtypes = 'yx_tuple:nonneg string' +cmd_GOD_ANNOTATE.argtypes = 'yx_tuple:nonneg string' def cmd_GOD_PORTAL(game, yx, msg): game.portals[yx] = msg game.changed = True -cmd_PORTAL.argtypes = 'yx_tuple:nonneg string' +cmd_GOD_PORTAL.argtypes = 'yx_tuple:nonneg string' def cmd_GET_ANNOTATION(game, yx, connection_id): annotation = '(none)';