From e3e0b954eeb6dffc6d24051c97b59b0f049091d4 Mon Sep 17 00:00:00 2001 From: dazedanon Date: Mon, 13 Oct 2025 19:17:03 -0500 Subject: [PATCH] Adjust map a bit --- modules/srpg.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/srpg.py b/modules/srpg.py index fb22392..a951de9 100644 --- a/modules/srpg.py +++ b/modules/srpg.py @@ -113,8 +113,10 @@ GENERIC_FILES = [ ] # List of file patterns that use parseMap +# Be specific to avoid catching non-map files like CommandLayout/mapcommands.json +# SRPG Studio map files in this project follow the pattern Maps/map_XXX.json MAP_FILES = [ - "map", + "map_", # e.g., Maps/map_000.json ]