Forgot subprocess

This commit is contained in:
dazedanon 2026-03-02 01:56:07 -06:00
parent da7b3a7bd1
commit 98f3058876

View file

@ -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)