mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
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:
commit
1d38cd733a
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user