diff --git a/world/src/civ/mod.rs b/world/src/civ/mod.rs index 98b345fe7a..18f216f8e6 100644 --- a/world/src/civ/mod.rs +++ b/world/src/civ/mod.rs @@ -592,25 +592,22 @@ impl Civs { .choose(&mut ctx.rng) .unwrap() )), - common::terrain::BiomeKind::Mountain if biome.1.len() as u32 > 750 => { - Some(format!( - "{} {}", - NameGen::location(&mut ctx.rng).generate_biome(), - [ - "Swamp", - "Swamps", - "Swamplands", - "Marsh", - "Marshlands", - "Morass", - "Mire", - "Bog", - "Snowlands" - ] - .choose(&mut ctx.rng) - .unwrap() - )) - }, + common::terrain::BiomeKind::Swamp if biome.1.len() as u32 > 750 => Some(format!( + "{} {}", + NameGen::location(&mut ctx.rng).generate_biome(), + [ + "Swamp", + "Swamps", + "Swamplands", + "Marsh", + "Marshlands", + "Morass", + "Mire", + "Bog" + ] + .choose(&mut ctx.rng) + .unwrap() + )), common::terrain::BiomeKind::Jungle if biome.1.len() as u32 > 750 => Some(format!( "{} {}", NameGen::location(&mut ctx.rng).generate_biome(),