From e9d424ce85d5181013abe0dbbf335fa81827ab37 Mon Sep 17 00:00:00 2001 From: brovoski69 Date: Tue, 26 May 2026 12:00:19 +0530 Subject: [PATCH 1/2] fix: show notice when monkey is enabled with text-style live stats (@brovoski69) --- frontend/src/ts/test/test-ui.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/src/ts/test/test-ui.ts b/frontend/src/ts/test/test-ui.ts index 4d8b099f00c5..013bf252e6cf 100644 --- a/frontend/src/ts/test/test-ui.ts +++ b/frontend/src/ts/test/test-ui.ts @@ -1872,6 +1872,14 @@ export async function afterTestWordChange( export function onTestStart(): void { Focus.set(true); + if ( + Config.monkey && + (Config.liveSpeedStyle === "text" || Config.liveAccStyle === "text") + ) { + showNoticeNotification( + "Monkey is not compatible with text-style live speed or accuracy", + ); + } Monkey.show(); TimerProgress.show(); LiveSpeed.show(); From 70b00d362b8bf576546d3d30987af700b4368a46 Mon Sep 17 00:00:00 2001 From: brovoski69 Date: Tue, 26 May 2026 12:13:00 +0530 Subject: [PATCH 2/2] fix: improve incompatibility notice message clarity --- frontend/src/ts/test/test-ui.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/ts/test/test-ui.ts b/frontend/src/ts/test/test-ui.ts index 013bf252e6cf..0d9f6c58b65f 100644 --- a/frontend/src/ts/test/test-ui.ts +++ b/frontend/src/ts/test/test-ui.ts @@ -1877,7 +1877,7 @@ export function onTestStart(): void { (Config.liveSpeedStyle === "text" || Config.liveAccStyle === "text") ) { showNoticeNotification( - "Monkey is not compatible with text-style live speed or accuracy", + 'Monkey is not compatible with text-style live speed or accuracy. Consider changing the live speed/accuracy style away from "text" in Settings.', ); } Monkey.show();