mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Fix husk drops in miniboss rooms.
This commit is contained in:
parent
519c01a888
commit
ef43d29627
3
assets/common/loot_tables/loot_table_husk.ron
Normal file
3
assets/common/loot_tables/loot_table_husk.ron
Normal file
@ -0,0 +1,3 @@
|
||||
[
|
||||
(1, "common.items.crafting_ing.stones"),
|
||||
]
|
@ -976,7 +976,7 @@ impl Floor {
|
||||
"common.loot_tables.loot_table_weapon_rare",
|
||||
),
|
||||
5 => Lottery::<String>::load_expect(
|
||||
"common.loot_tables.loot_table_miniboss",
|
||||
"common.loot_tables.loot_table_husk",
|
||||
),
|
||||
_ => Lottery::<String>::load_expect(
|
||||
"common.loot_tables.loot_table_armor_misc",
|
||||
@ -1088,7 +1088,7 @@ impl Floor {
|
||||
),
|
||||
))
|
||||
.with_name("Cultist Husk".to_string())
|
||||
.with_loot_drop(comp::Item::new_from_asset_expect(chosen))
|
||||
.with_loot_drop(comp::Item::new_from_asset_expect("common.items.crafting_ing.stones"))
|
||||
.with_loadout_config(loadout_builder::LoadoutConfig::Husk)
|
||||
});
|
||||
entities
|
||||
|
Loading…
Reference in New Issue
Block a user