From 484fecef27a77788464b55b0efe5689d834ea642 Mon Sep 17 00:00:00 2001 From: Evan Date: Sat, 15 Feb 2025 10:02:48 -0800 Subject: [PATCH] rebalance hard and impossible --- src/core/configuration/DefaultConfig.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index f7a8d6f1a..638717eb2 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -416,10 +416,10 @@ export class DefaultConfig implements Config { toAdd *= 1; break; case Difficulty.Hard: - toAdd *= 1.2; + toAdd *= 1.1; break; case Difficulty.Impossible: - toAdd *= 1.5; + toAdd *= 1.2; break; } }