From 5bfe96f75381599ec9a623cd7decc4ae7e797814 Mon Sep 17 00:00:00 2001 From: TheInvisibleMage Date: Thu, 4 Jan 2024 23:17:28 +1100 Subject: [PATCH] Fix duplicated "scenario" tag. --- modules/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/chat.py b/modules/chat.py index 66d51703..082b4aa3 100644 --- a/modules/chat.py +++ b/modules/chat.py @@ -742,7 +742,7 @@ def build_context(data : str, charName : str): for scenarioKey in scenarioKeys: if scenarioKey in data and data[scenarioKey] != '': - scenarioStrings.append(f"Scenario: {data[scenarioKey].strip()}") + scenarioStrings.append(f"{data[scenarioKey].strip()}") for exDialogKey in exDialogKeys: if exDialogKey in data and data[exDialogKey] != '':