From f871cf84f2ff6c7e7751605ac5984c1fdc66e75b Mon Sep 17 00:00:00 2001 From: vlapsley Date: Mon, 6 Feb 2017 11:14:08 +1100 Subject: [PATCH] Change distribution of lemon eucalyptus This commit prevents lemon eucalyptus from appearing at higher alititudes, especially near the snowline. --- mods/australia_modpack/australia/biome_eastern_coasts.lua | 2 +- mods/australia_modpack/australia/biome_far_north_queensland.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/australia_modpack/australia/biome_eastern_coasts.lua b/mods/australia_modpack/australia/biome_eastern_coasts.lua index 95634bf..3eda253 100644 --- a/mods/australia_modpack/australia/biome_eastern_coasts.lua +++ b/mods/australia_modpack/australia/biome_eastern_coasts.lua @@ -364,7 +364,7 @@ aus.register_plant({ density = 0.002, priority = 50, check = function(t, pos) - return pos.y >= 5 and pos.y <= 160 and table.contains({"eastern_coasts"}, t.biome) + return pos.y >= 5 and pos.y <= 110 and table.contains({"eastern_coasts"}, t.biome) end, grow = function(nodes, pos, data, area) local height = math_random(12, 18) diff --git a/mods/australia_modpack/australia/biome_far_north_queensland.lua b/mods/australia_modpack/australia/biome_far_north_queensland.lua index d5f7a0f..6b42e21 100644 --- a/mods/australia_modpack/australia/biome_far_north_queensland.lua +++ b/mods/australia_modpack/australia/biome_far_north_queensland.lua @@ -280,7 +280,7 @@ aus.register_plant({ density = 0.02, priority = 50, check = function(t, pos) - return t.valleys > 0.5 and t.v4 > 0.5 and pos.y >= 5 and pos.y <= 160 and table.contains({"far_north_queensland"}, t.biome) + return t.valleys > 0.5 and t.v4 > 0.5 and pos.y >= 5 and pos.y <= 110 and table.contains({"far_north_queensland"}, t.biome) end, grow = function(nodes, pos, data, area) local height = math_random(12, 18)