tweaked values again

This commit is contained in:
scamiv
2025-11-22 22:33:06 +01:00
parent 1907c61fb4
commit 3c3af58155
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -371,7 +371,7 @@ export class DefaultConfig implements Config {
}
trainGoldRefillTime(): Tick {
// Baseline: full refill in x ticks
return 300;
return 120;
}
trainStationMinRange(): number {
+1 -1
View File
@@ -3,7 +3,7 @@ import { TileRef } from "./GameMap";
import { GameUpdateType, RailTile, RailType } from "./GameUpdates";
import { TrainStation } from "./TrainStation";
const CONGESTION_EMA_ALPHA = 0.05;
const CONGESTION_EMA_ALPHA = 0.1;
export class Railroad {
private trainCount: number = 0;