From d6b2a46be524ff55b2739e0a28aa81cada07bb91 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Tue, 21 Jan 2025 14:22:35 -0800 Subject: [PATCH] make plains have more defence, mountains less --- src/client/index.html | 2 +- src/core/configuration/DefaultConfig.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/index.html b/src/client/index.html index 6ed77a187..ac21a49ae 100644 --- a/src/client/index.html +++ b/src/client/index.html @@ -29,7 +29,7 @@

OpenFront.io

-

(v0.14.0)

+

(v0.14.1)

diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index de04bc36b..20d54664e 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -191,7 +191,7 @@ export class DefaultConfig implements Config { let speed = 0 switch (tileToConquer.terrain()) { case TerrainType.Plains: - mag = 70 + mag = 80 speed = 15 break case TerrainType.Highland: @@ -199,7 +199,7 @@ export class DefaultConfig implements Config { speed = 20 break case TerrainType.Mountain: - mag = 130 + mag = 120 speed = 25 break }