home · contact · privacy
Server, plugin: Refactor actor_move plugin hooking.
[plomrogue] / server / config / actions.py
index 66be0e20d9370e17208131852a6b527bd32a4df5..e2aff197a3439268411b05f07bf6c0c0ababfda3 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,6 +14,6 @@ action_db = {
     "actor_drop": actor_drop,
     "actor_use": actor_use
 }
-
-from server.ai import ai
-ai_func = ai
+actor_pickup_test_hook = lambda x, y: True
+actor_use_attempts_hook = lambda x, y: None
+actor_move_attempts_hook = lambda x, y, z: None