From 9dc326e06a3a43d835f8637a9f11c8b1125fb0f2 Mon Sep 17 00:00:00 2001 From: Evan Date: Thu, 13 Feb 2025 11:51:25 -0800 Subject: [PATCH] rename intense difficulty => impossible --- src/client/components/Difficulties.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/components/Difficulties.ts b/src/client/components/Difficulties.ts index 88765855d..77913b355 100644 --- a/src/client/components/Difficulties.ts +++ b/src/client/components/Difficulties.ts @@ -5,7 +5,7 @@ export enum DifficultyDescription { Easy = "Relaxed", Medium = "Balanced", Hard = "Intense", - Impossible = "Challenging", + Impossible = "Impossible", } @customElement("difficulty-display")