From 786f8db84fc11037ea1b56326a74719c4e168ec6 Mon Sep 17 00:00:00 2001 From: DayV Date: Mon, 25 Nov 2024 19:20:13 +0000 Subject: [PATCH] Apply clue score boost --- src/mahoji/commands/clue.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/mahoji/commands/clue.ts b/src/mahoji/commands/clue.ts index 6a4d950154..2795ba34a6 100644 --- a/src/mahoji/commands/clue.ts +++ b/src/mahoji/commands/clue.ts @@ -301,7 +301,10 @@ export const clueCommand: OSBMahojiCommand = { 25 ); - if (learningReductionPercent >= 1) boosts.push(`${learningReductionPercent}% for Clue score`); + if (learningReductionPercent >= 1) { + timePerClue *= 1 - learningReductionPercent / 100; + boosts.push(`${learningReductionPercent}% for Clue score`); + } const maxTripLength = calcMaxTripLength(user, 'ClueCompletion');