From 98f3058876dac946a381c562cb0fc052f44bf278 Mon Sep 17 00:00:00 2001 From: dazedanon Date: Mon, 2 Mar 2026 01:56:07 -0600 Subject: [PATCH] Forgot subprocess --- util/subprocess_runner.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/util/subprocess_runner.py b/util/subprocess_runner.py index b11bc34..cb2d575 100644 --- a/util/subprocess_runner.py +++ b/util/subprocess_runner.py @@ -119,6 +119,12 @@ def run_handler(project_root, module_name, filename, estimate_only): elif "Plugin" in module_name: from modules.rpgmakerplugin import handlePlugin handler = handlePlugin + elif "Aquedi4" in module_name: + from modules.aquedi4 import handleAquedi4 + handler = handleAquedi4 + elif "SRPG" in module_name: + from modules.srpg import handleSRPG + handler = handleSRPG else: print(f"ERROR:Unknown module: {module_name}") sys.exit(1)