From b77d7b68103aa6c0d5787c4cb1d1d7b1874d9000 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Tue, 10 Nov 2020 11:50:09 +0100
Subject: [PATCH] Fix forgotten argtypes.

---
 plomrogue/commands.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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
-- 
2.30.2