From e2a74c5e5caa8e7c5eb6cb990420096e7aae8e6f Mon Sep 17 00:00:00 2001 From: Avi Weinstock Date: Fri, 19 Mar 2021 11:24:09 -0400 Subject: [PATCH] Enable RtSim airships. --- server/src/rtsim/entity.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/server/src/rtsim/entity.rs b/server/src/rtsim/entity.rs index 7a038bed20..f3e8fa23e1 100644 --- a/server/src/rtsim/entity.rs +++ b/server/src/rtsim/entity.rs @@ -34,9 +34,7 @@ impl Entity { pub fn get_body(&self) -> comp::Body { match self.rng(PERM_GENUS).gen::() { // we want 5% airships, 45% birds, 50% humans - // TODO: uncomment this to re-enable RtSim airships once physics is interpolated well - // in multiplayer. - //x if x < 0.05 => comp::Body::Ship(comp::ship::Body::DefaultAirship), + x if x < 0.05 => comp::Body::Ship(comp::ship::Body::DefaultAirship), x if x < 0.50 => { let species = *(&comp::bird_medium::ALL_SPECIES) .choose(&mut self.rng(PERM_SPECIES))