home · contact · privacy
Server, plugin: Refactor ai (plugin hooks).
[plomrogue] / server / commands.py
index 72018be4006a93a58a94d8e69144fed3004d9466..fc384528704cf88e8cfec3b975a857d1433594f2 100644 (file)
@@ -513,6 +513,6 @@ def play_move(str_arg):
 
 def command_ai():
     """Call ai() on player Thing, then turn_over()."""
-    from server.config.actions import ai_func
-    ai_func(world_db["Things"][0])
+    from server.ai import ai
+    ai(world_db["Things"][0])
     turn_over()