X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;ds=sidebyside;f=plomrogue%2Fcommands.py;h=389b534da2bb7783dbd254a5ba16eb19f94289c0;hb=ebe7156740549c11953efc4058d318c141e0505d;hp=fd0863284f04c550fb623dd936070bc65f63ba79;hpb=3d9cd33d98bf022b5a30f9944d168ff4f9664329;p=plomrogue2 diff --git a/plomrogue/commands.py b/plomrogue/commands.py index fd08632..389b534 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -97,12 +97,12 @@ cmd_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)';