mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
- fix Swamp-naming
This commit is contained in:
parent
8f0ad56d25
commit
d47e06baac
@ -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(),
|
||||
|
Loading…
Reference in New Issue
Block a user