From 739155f719bf75bda9ddf295c86cd69a3803d51c Mon Sep 17 00:00:00 2001 From: Evan Date: Tue, 18 Feb 2025 11:53:22 -0800 Subject: [PATCH] increase largeModifier to 50k to slow game down a bit --- 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 be7fc8479..a57ab7970 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -301,8 +301,8 @@ export class DefaultConfig implements Config { } let largeModifier = 1; - if (attacker.numTilesOwned() > 35_000) { - largeModifier = Math.sqrt(35_000 / attacker.numTilesOwned()); + if (attacker.numTilesOwned() > 50_000) { + largeModifier = Math.sqrt(50_000 / attacker.numTilesOwned()); } if (defender.isPlayer()) {