diff --git a/src/server/MapPlaylist.ts b/src/server/MapPlaylist.ts index beadd0bec..c4430e332 100644 --- a/src/server/MapPlaylist.ts +++ b/src/server/MapPlaylist.ts @@ -201,7 +201,7 @@ export class MapPlaylist { return { isRandomSpawn: Math.random() < 0.1, // 10% chance isCompact: Math.random() < 0.05, // 5% chance - startingGold: Math.random() < 0.03 ? 5_000_000 : undefined, // 3% chance + startingGold: Math.random() < 0.05 ? 5_000_000 : undefined, // 5% chance }; }