mirror of
https://github.com/mt-mods/plantlife_modpack.git
synced 2025-06-28 14:16:11 +02:00
don't disable air checking in biome defs when it isn't necessary
doing so greatly slows down plants_lib by forcing the use of the legacy mapgen code.
This commit is contained in:
@ -147,7 +147,6 @@ plantslib:register_generate_plant({ -- near trees (woodlands)
|
||||
humidity_min = 0.4,
|
||||
temp_max = -0.5, -- 55 <20>C (too hot?)
|
||||
temp_min = 0.75, -- -12 <20>C
|
||||
check_air = false,
|
||||
},
|
||||
"abstract_ferns.grow_fern"
|
||||
)
|
||||
@ -174,7 +173,6 @@ plantslib:register_generate_plant({ -- near stone (mountains)
|
||||
humidity_min = 0.4,
|
||||
temp_max = -0.5, -- 55 <20>C (too hot?)
|
||||
temp_min = 0.75, -- -12 <20>C
|
||||
check_air = false,
|
||||
},
|
||||
"abstract_ferns.grow_fern"
|
||||
)
|
||||
@ -212,7 +210,6 @@ plantslib:register_generate_plant({ -- near ores (potential mining sites)
|
||||
humidity_min = 0.4,
|
||||
temp_max = -0.5, -- 55 <20>C (too hot?)
|
||||
temp_min = 0.75, -- -12 <20>C
|
||||
check_air = false,
|
||||
},
|
||||
"abstract_ferns.grow_fern"
|
||||
)
|
||||
@ -243,8 +240,7 @@ plantslib:register_generate_plant({
|
||||
humidity_min = 0.4,
|
||||
temp_max = -0.5, -- 55 <20>C (too hot?)
|
||||
temp_min = 0.75, -- -12 <20>C
|
||||
check_air = false,
|
||||
},
|
||||
"abstract_ferns.grow_fern"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
@ -371,9 +371,8 @@ plantslib:register_generate_plant({
|
||||
plantlife_limit = -0.9,
|
||||
--humidity_max = 0.39,--1.0,
|
||||
--humidity_min = 0.5,
|
||||
--temp_max = -1,-- -1.2,-- -0.5, -- ~ 55 <20>C
|
||||
--temp_min = -0.35,-- -0.07, -- ~ 25 <20>C
|
||||
check_air = false,
|
||||
--temp_max = -1,-- -1.2,-- -0.5, -- ~ 55C
|
||||
--temp_min = -0.35,-- -0.07, -- ~ 25C
|
||||
},
|
||||
"abstract_ferns.grow_giant_tree_fern"
|
||||
)
|
||||
@ -401,8 +400,7 @@ plantslib:register_generate_plant({
|
||||
humidity_min = 1.0,
|
||||
temp_max = -1.0,
|
||||
temp_min = 1.0,
|
||||
check_air = false,
|
||||
},
|
||||
"abstract_ferns.grow_giant_tree_fern"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
@ -212,7 +212,6 @@ plantslib:register_generate_plant({
|
||||
humidity_min = 0.4,
|
||||
temp_max = -0.5,
|
||||
temp_min = 0.13,
|
||||
check_air = false,
|
||||
},
|
||||
"abstract_ferns.grow_tree_fern"
|
||||
)
|
||||
@ -240,7 +239,6 @@ plantslib:register_generate_plant({
|
||||
humidity_min = 1.0,
|
||||
temp_max = -1.0,
|
||||
temp_min = 1.0,
|
||||
check_air = false,
|
||||
},
|
||||
"abstract_ferns.grow_tree_fern"
|
||||
)
|
||||
|
Reference in New Issue
Block a user