Small mapinfos fix

This commit is contained in:
dazedanon 2025-11-16 12:47:27 -06:00
parent 9c2412b46b
commit 5ca84f083d
2 changed files with 2 additions and 2 deletions

View file

@ -172,7 +172,7 @@ def openFiles(filename):
with open("files/" + filename, "r", encoding="UTF-8") as f:
data = yaml.load(f)
# Map Files
if "Map" in filename and filename != "MapInfos.json":
if "Map" in filename and "MapInfos" not in filename:
translatedData = parseMap(data, filename)
# CommonEvents Files

View file

@ -156,7 +156,7 @@ def openFiles(filename):
data = json.load(f)
# Map Files
if "Map" in filename and filename != "MapInfos.json":
if "Map" in filename and "MapInfos" not in filename:
translatedData = parseMap(data, filename)
# CommonEvents Files