From 665ff2f272e0f046d0ebd64bd6f5b284cda1f239 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Sat, 2 Aug 2025 10:20:10 -0500 Subject: [PATCH] Include Bandit Busywork in custom scenarios section --- src/game/boe.fileio.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/game/boe.fileio.cpp b/src/game/boe.fileio.cpp index 65dd1e24..48d0c66b 100644 --- a/src/game/boe.fileio.cpp +++ b/src/game/boe.fileio.cpp @@ -381,6 +381,12 @@ std::vector build_scen_headers() { } } }else{ + scen_header_type scen_head; + + // Include Bandit Busywork in custom section: + if(load_scenario_header(progDir / "Blades of Exile Scenarios/busywork.boes", scen_head)) + scen_headers.push_back(scen_head); + for(fs::path scenDir : all_scen_dirs()){ std::cout << scenDir << std::endl; fs::recursive_directory_iterator iter(scenDir); @@ -395,7 +401,6 @@ std::vector build_scen_headers() { continue; } - scen_header_type scen_head; if(load_scenario_header(iter->path(), scen_head)) scen_headers.push_back(scen_head); }