Merge branch 'snowram/omit-rtsim-wyvern' into 'master'

Removes flame wyvern from RTsim pool until proper introduction

See merge request veloren/veloren!2868
This commit is contained in:
Joshua Barretto 2021-09-22 19:50:22 +00:00
commit 1d38cd733a

View File

@ -53,7 +53,12 @@ impl Entity {
.into()
},
x if x < 0.50 => {
let species = *(&comp::bird_large::ALL_SPECIES)
let species = *(&[
// Flame Wyvern not incuded until proper introduction
comp::bird_large::Species::Phoenix,
comp::bird_large::Species::Cockatrice,
comp::bird_large::Species::Roc,
])
.choose(&mut self.rng(PERM_SPECIES))
.unwrap();
comp::bird_large::Body::random_with(&mut self.rng(PERM_BODY), &species)