Make v6 sapling treasures more common

This commit is contained in:
Wuzzy 2018-01-12 19:02:06 +01:00
parent 6f8b524d07
commit 2f32c76013
2 changed files with 5 additions and 5 deletions

View File

@ -56,11 +56,11 @@ local get_loot = function()
if mg_name == "v6" then
table.insert(loottable, {
stacks_min = 1,
stacks_max = 1,
stacks_max = 3,
items = {
{ itemstring = "mcl_core:birchsapling", weight = 1, amount_min = 1, amount_max = 2 },
{ itemstring = "mcl_core:acaciasapling", weight = 1, amount_min = 1, amount_max = 2 },
{ itemstring = "", weight = 11 },
{ itemstring = "", weight = 6 },
},
})
end

View File

@ -105,11 +105,11 @@ function tsm_railcorridors.get_treasures(pr)
if mg_name == "v6" then
table.insert(loottable, {
stacks_min = 1,
stacks_max = 1,
stacks_max = 3,
items = {
{ itemstring = "mcl_core:darksapling", weight = 1, amount_min = 1, amount_max = 2 },
{ itemstring = "mcl_core:darksapling", weight = 1, amount_min = 1, amount_max = 3 },
{ itemstring = "mcl_core:birchsapling", weight = 1, amount_min = 1, amount_max = 2 },
{ itemstring = "", weight = 14 },
{ itemstring = "", weight = 6 },
},
})
end