From 5f94ad239472302d4589880968f8c5971bbcdc85 Mon Sep 17 00:00:00 2001 From: kwaroran Date: Mon, 27 May 2024 03:03:36 +0900 Subject: [PATCH] fix: Reverse order of actives in loadLoreBookV3Prompt --- src/ts/process/lorebook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ts/process/lorebook.ts b/src/ts/process/lorebook.ts index 91bbc056..d857560e 100644 --- a/src/ts/process/lorebook.ts +++ b/src/ts/process/lorebook.ts @@ -511,7 +511,7 @@ export async function loadLoreBookV3Prompt(){ }) return { - actives: activesFiltered, + actives: activesFiltered.reverse() } }