home · contact · privacy
Server: Transform PLUGIN command to God command, save its input.
[plomrogue] / server / actions.py
index 60313876fecab80b9c28611fa23065b578dce201..537dcb175512fc89779f7f49f9b3e1a3d223c203 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 from server.config.world_data import world_db
 from server.io import log
 
@@ -48,7 +53,7 @@ def actor_move(t):
             log("You MOVE " + dir + ".")
 
 
-def actor_pick_up(t):
+def actor_pickup(t):
     """Make t pick up (topmost?) Thing from ground into inventory.
 
     Define topmostness by how low the thing's type ID is.