forked from VoxeLibre/VoxeLibre
Fix igloo chest loot
This commit is contained in:
parent
dd163f4850
commit
4a9a7b8fef
|
@ -142,7 +142,7 @@ mcl_structures.register_structure("igloo",{
|
||||||
biomes = { "ColdTaiga", "IcePlainsSpikes", "IcePlains" },
|
biomes = { "ColdTaiga", "IcePlainsSpikes", "IcePlains" },
|
||||||
place_func = mcl_structures.generate_igloo,
|
place_func = mcl_structures.generate_igloo,
|
||||||
loot = {
|
loot = {
|
||||||
["mcl_chests:chest"] = {{
|
["mcl_chests:chest_small"] = {{
|
||||||
stacks_min = 1,
|
stacks_min = 1,
|
||||||
stacks_max = 1,
|
stacks_max = 1,
|
||||||
items = {
|
items = {
|
||||||
|
@ -160,6 +160,7 @@ mcl_structures.register_structure("igloo",{
|
||||||
{ itemstring = "mcl_mobitems:rotten_flesh", weight = 10 },
|
{ itemstring = "mcl_mobitems:rotten_flesh", weight = 10 },
|
||||||
{ itemstring = "mcl_tools:axe_stone", weight = 2 },
|
{ itemstring = "mcl_tools:axe_stone", weight = 2 },
|
||||||
{ itemstring = "mcl_core:emerald", weight = 1 },
|
{ itemstring = "mcl_core:emerald", weight = 1 },
|
||||||
|
{ itemstring = "mcl_core:apple_gold", weight = 1 },
|
||||||
}
|
}
|
||||||
}},
|
}},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue