From ecbd6000c39851d1d0d07209f0ac93f26eeb9732 Mon Sep 17 00:00:00 2001 From: Saint-dev Date: Thu, 8 Apr 2021 12:02:02 -0400 Subject: [PATCH] fixed funbox type not showing in results screen --- src/js/test/test-logic.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/test/test-logic.js b/src/js/test/test-logic.js index 821e592ac..0bde734ed 100644 --- a/src/js/test/test-logic.js +++ b/src/js/test/test-logic.js @@ -1658,8 +1658,8 @@ export function finish(difficultyFailed = false) { if (Config.blindMode) { testType += "
blind"; } - if (Funbox.active !== "none") { - testType += "
" + Funbox.active.replace(/_/g, " "); + if (Funbox.funboxSaved !== "none") { + testType += "
" + Funbox.funboxSaved.replace(/_/g, " "); } if (Config.difficulty == "expert") { testType += "
expert";