From 6f14dee6406e8ff0d653c7d3e6c2c5470880a6ba Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Mon, 29 Sep 2025 12:35:13 +0200 Subject: [PATCH] fix(webui): invoke giveKeyChainStageTriggered for new stage Previously, this caused the old stage to just be reinitiated so we never went backwards. --- src/controllers/custom/manageQuestsController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/custom/manageQuestsController.ts b/src/controllers/custom/manageQuestsController.ts index efd1ec63..25c80cd0 100644 --- a/src/controllers/custom/manageQuestsController.ts +++ b/src/controllers/custom/manageQuestsController.ts @@ -115,7 +115,7 @@ export const manageQuestsController: RequestHandler = async (req, res) => { if (stage > 0) { await giveKeyChainStageTriggered(inventory, { KeyChain: questKey.ItemType, - ChainStage: stage + ChainStage: stage - 1 }); } } -- 2.47.2