From 44bfc22531d32a7885790ca5e3616b04cb2bb49d Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Mon, 16 Dec 2024 12:09:14 +0100 Subject: [PATCH] plan monsters --- src/processing.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/processing.c b/src/processing.c index 81c9b285d..c1ef4f102 100644 --- a/src/processing.c +++ b/src/processing.c @@ -3,6 +3,7 @@ #include "bind_config.h" #include "eressea.h" #include "laws.h" +#include "monsters.h" #include "orderfile.h" #include @@ -54,7 +55,7 @@ void run_turn(void) log_fatal("could not read game data %s", path); } turn_begin(); - // plan_monsters(); + plan_monsters(get_monsters()); snprintf(path, sizeof(path), "orders.%d", turn); if (0 != readorders(path)) {