From 4c74899143a33b1370e8f6b5016f44940cacd1cf Mon Sep 17 00:00:00 2001 From: Snowram Date: Wed, 22 Sep 2021 20:59:04 +0200 Subject: [PATCH] Removes flame wyvern from RTsim pool until proper introduction --- server/src/rtsim/entity.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/server/src/rtsim/entity.rs b/server/src/rtsim/entity.rs index d5daf4ee12..b779b7fac1 100644 --- a/server/src/rtsim/entity.rs +++ b/server/src/rtsim/entity.rs @@ -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)