Revert "meta: reduce train spawn rate to compensate for shared train track update"

This reverts commit df5fad1a1f.
This commit is contained in:
evanpelle
2026-03-10 18:41:08 -07:00
parent 8329dd479e
commit 19a378942d
+1 -1
View File
@@ -271,7 +271,7 @@ export class DefaultConfig implements Config {
trainSpawnRate(numPlayerFactories: number): number {
// hyperbolic decay, midpoint at 10 factories
// expected number of trains = numPlayerFactories / trainSpawnRate(numPlayerFactories)
return (numPlayerFactories + 10) * 25;
return (numPlayerFactories + 10) * 18;
}
trainGold(rel: "self" | "team" | "ally" | "other"): Gold {
const multiplier = this.goldMultiplier();