From: Christian Heller Date: Tue, 10 Nov 2020 10:50:09 +0000 (+0100) Subject: Fix forgotten argtypes. X-Git-Url: https://plomlompom.com/repos/?a=commitdiff_plain;h=b77d7b68103aa6c0d5787c4cb1d1d7b1874d9000;p=plomrogue2 Fix forgotten argtypes. --- diff --git a/plomrogue/commands.py b/plomrogue/commands.py index fd08632..c51dcc9 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -92,12 +92,12 @@ 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