home · contact · privacy
Server: Fix dependences on possibly undefined actions.
[plomrogue] / server / actions.py
index 1c835814ab51b6714413945c3648996e86f69eb1..537dcb175512fc89779f7f49f9b3e1a3d223c203 100644 (file)
@@ -53,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.