home · contact · privacy
Server, plugin: Refactor actor_pickup plugin hooking.
[plomrogue] / server / config / actions.py
index 7f3af9a1116b3364552d78a429b002eb147a3632..5af2d75eb722a50c74ec9df7fa969a81026e9404 100644 (file)
@@ -5,6 +5,8 @@
 
 from server.actions import actor_wait, actor_move, actor_pickup, actor_drop, \
     actor_use
+
+
 action_db = {
     "actor_wait": actor_wait,
     "actor_move": actor_move,
@@ -12,3 +14,4 @@ action_db = {
     "actor_drop": actor_drop,
     "actor_use": actor_use
 }
+actor_pickup_test_hook = lambda x, y: True