Merge branch 'ubruntu/fix-dungeon-loot-fallback' into 'master'

fix BipedSmall NPCs using fallback loot table

See merge request veloren/veloren!2809
This commit is contained in:
Joshua Barretto 2021-09-04 18:53:55 +00:00
commit 102a6fe1f0

View File

@ -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",
})
};