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

This commit is contained in:
evanpelle
2026-03-09 09:45:32 -07:00
parent ebd39e8ced
commit df5fad1a1f
+1 -1
View File
@@ -268,7 +268,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) * 18;
return (numPlayerFactories + 10) * 25;
}
trainGold(rel: "self" | "team" | "ally" | "other"): Gold {
const multiplier = this.goldMultiplier();