home · contact · privacy
Use god mode commands on world save.
[plomrogue2] / plomrogue / commands.py
index fd0863284f04c550fb623dd936070bc65f63ba79..389b534da2bb7783dbd254a5ba16eb19f94289c0 100644 (file)
@@ -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)';