home · contact · privacy
Server, plugin: Refactor ai (plugin hooks).
[plomrogue] / server / config / actions.py
index 0971c128dc2f9f2b17f89439c193948a52fa4d27..7f3af9a1116b3364552d78a429b002eb147a3632 100644 (file)
@@ -3,13 +3,12 @@
 # see the file NOTICE in the root directory of the PlomRogue source package.
 
 
-from server.actions import actor_wait, actor_move, actor_pick_up, actor_drop, \
+from server.actions import actor_wait, actor_move, actor_pickup, actor_drop, \
     actor_use
-
 action_db = {
     "actor_wait": actor_wait,
     "actor_move": actor_move,
-    "actor_pick_up": actor_pick_up,
+    "actor_pickup": actor_pickup,
     "actor_drop": actor_drop,
     "actor_use": actor_use
 }