From a4e8f0780ce9d4682e9e0fc2c8187434174cd32b Mon Sep 17 00:00:00 2001 From: Gnome Ann <> Date: Mon, 17 Jan 2022 10:48:53 -0500 Subject: [PATCH] Fix a typo in bridge.lua --- bridge.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bridge.lua b/bridge.lua index 85e7eacc..35f521da 100644 --- a/bridge.lua +++ b/bridge.lua @@ -1282,10 +1282,10 @@ return function(_python, _bridged) ---@param v table function KoboldLib_setters.outputs(t, v) if koboldbridge.userstate ~= "outmod" then - error("Cannot write to `KoboldLib.generated` from outside of an output modifier") + error("Cannot write to `KoboldLib.outputs` from outside of an output modifier") return elseif type(v) ~= "table" then - error("`KoboldLib.generated` must be a 1D array of strings; you attempted to set it to a " .. type(v)) + error("`KoboldLib.outputs` must be a 1D array of strings; you attempted to set it to a " .. type(v)) return end koboldbridge.outputs = v