Fix igloo chest loot

This commit is contained in:
cora 2022-10-15 04:03:36 +02:00
parent dd163f4850
commit 4a9a7b8fef
1 changed files with 2 additions and 1 deletions

View File

@ -142,7 +142,7 @@ mcl_structures.register_structure("igloo",{
biomes = { "ColdTaiga", "IcePlainsSpikes", "IcePlains" },
place_func = mcl_structures.generate_igloo,
loot = {
["mcl_chests:chest"] = {{
["mcl_chests:chest_small"] = {{
stacks_min = 1,
stacks_max = 1,
items = {
@ -160,6 +160,7 @@ mcl_structures.register_structure("igloo",{
{ itemstring = "mcl_mobitems:rotten_flesh", weight = 10 },
{ itemstring = "mcl_tools:axe_stone", weight = 2 },
{ itemstring = "mcl_core:emerald", weight = 1 },
{ itemstring = "mcl_core:apple_gold", weight = 1 },
}
}},
}