From b96f4b35245dc61c071273b3ff4e35ea5b8158ea Mon Sep 17 00:00:00 2001 From: dazedanon Date: Tue, 2 Dec 2025 01:13:19 -0600 Subject: [PATCH] Allow non words to be appended for consistency --- modules/rpgmakermvmz.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/rpgmakermvmz.py b/modules/rpgmakermvmz.py index 8ee4d94..d27ec20 100644 --- a/modules/rpgmakermvmz.py +++ b/modules/rpgmakermvmz.py @@ -1819,11 +1819,6 @@ def searchCodes(page, pbar, jobList, filename): j = i jaString = codeList[i]["parameters"][0] - # Check if there is text to translate - if not re.search(r"\w+", jaString): - i += 1 - continue - # Validate Japanese Text if not re.search(LANGREGEX, jaString) and IGNORETLTEXT: i += 1