From 8229bda979dbbe91e78400b2545b8a9a248ac818 Mon Sep 17 00:00:00 2001 From: dazedanon Date: Tue, 15 Jul 2025 15:25:26 -0500 Subject: [PATCH] Remove Copy --- modules/rpgmakermvmz.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/rpgmakermvmz.py b/modules/rpgmakermvmz.py index faf09f5..bb395f6 100644 --- a/modules/rpgmakermvmz.py +++ b/modules/rpgmakermvmz.py @@ -8,7 +8,6 @@ import time import traceback import tiktoken import openai -import copy from concurrent.futures import ThreadPoolExecutor, as_completed from pathlib import Path from colorama import Fore @@ -2537,6 +2536,9 @@ def createContext(fullPromptFlag, subbedT, format): vocabPairs = parseVocabWithCategories(VOCAB) matchedVocabText = buildMatchedVocabText(vocabPairs, subbedT) + if matchedVocabText: + print(matchedVocabText) + if fullPromptFlag: system = PROMPT + matchedVocabText else: