From 23daa0e5c708f0084486c7ba37dd50a09f248ddd Mon Sep 17 00:00:00 2001 From: Bryant Deters Date: Sat, 4 Sep 2021 12:11:09 -0500 Subject: [PATCH] added a bipedsmall variant to loot fallback --- server/src/events/entity_manipulation.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/events/entity_manipulation.rs b/server/src/events/entity_manipulation.rs index 56978c7380..d518cf970f 100644 --- a/server/src/events/entity_manipulation.rs +++ b/server/src/events/entity_manipulation.rs @@ -525,6 +525,7 @@ pub fn handle_destroy(server: &mut Server, entity: EcsEntity, cause: HealthSourc _ => "common.loot_tables.creature.quad_low.generic", } }, + Some(common::comp::Body::BipedSmall(_)) => "common.loot_tables.nothing", _ => "common.loot_tables.fallback", }) };