From 76b1da7d4d65dbc8e3417f10bbc3a9bde90a4ff7 Mon Sep 17 00:00:00 2001 From: dazedanon Date: Sat, 5 Apr 2025 19:18:09 -0500 Subject: [PATCH] Move batchFull down and into mismatch --- modules/rpgmakermvmz.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/rpgmakermvmz.py b/modules/rpgmakermvmz.py index 465bec8..1bc7e48 100644 --- a/modules/rpgmakermvmz.py +++ b/modules/rpgmakermvmz.py @@ -534,7 +534,6 @@ def searchNames(data, pbar, context): with open("translations.txt", "a", encoding="utf-8") as file: file.write(f"\n#{context}\n") while i < len(data) or filling == True: - batchFull = False if i < len(data): # Empty Data if data[i] is None or data[i]["name"] == "": @@ -747,6 +746,7 @@ def searchNames(data, pbar, context): nameList.clear() profileList.clear() nicknameList.clear() + batchFull = False filling = False j += 1 else: @@ -835,6 +835,7 @@ def searchNames(data, pbar, context): descriptionList.clear() filling = False mismatch = False + batchFull = False i += 1