From 45e71ed90b427c8af5274b540208da3ede38a360 Mon Sep 17 00:00:00 2001 From: haunter Date: Sat, 2 May 2026 01:03:44 +0300 Subject: [PATCH] debug 3 --- blueprint_engine.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/blueprint_engine.py b/blueprint_engine.py index be1d923..0c761c7 100644 --- a/blueprint_engine.py +++ b/blueprint_engine.py @@ -83,7 +83,8 @@ def evaluate_blueprints(conn): (town_id,) ).fetchall() if db_pending: - log.warning(f"[blueprint] Already has {len(db_pending)} pending/executing commands — skipping") + details = [(r['id'], r['type'], r['status']) for r in db_pending] + log.warning(f"[blueprint] Already has {len(db_pending)} pending/executing commands — skipping. Commands: {details}") continue # Calculate Future Levels based on current + game queue