From 2f32c76013db0e311063020ef3360c3477650dce Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 12 Jan 2018 19:02:06 +0100 Subject: [PATCH] Make v6 sapling treasures more common --- mods/MAPGEN/mcl_dungeons/init.lua | 4 ++-- mods/MAPGEN/tsm_railcorridors/gameconfig.lua | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mods/MAPGEN/mcl_dungeons/init.lua b/mods/MAPGEN/mcl_dungeons/init.lua index 555e262bb..7bd2af285 100644 --- a/mods/MAPGEN/mcl_dungeons/init.lua +++ b/mods/MAPGEN/mcl_dungeons/init.lua @@ -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 diff --git a/mods/MAPGEN/tsm_railcorridors/gameconfig.lua b/mods/MAPGEN/tsm_railcorridors/gameconfig.lua index cbf1a7934..14ef3e5c4 100644 --- a/mods/MAPGEN/tsm_railcorridors/gameconfig.lua +++ b/mods/MAPGEN/tsm_railcorridors/gameconfig.lua @@ -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