mirror of
https://github.com/mt-mods/plantlife_modpack.git
synced 2025-07-15 22:30:43 +02:00
use real function calls instead of the old string method where possible
(basically leaving only the old legacy mapgen calls still using the string method)
This commit is contained in:
@ -151,7 +151,7 @@ plantslib:register_generate_plant({ -- near trees (woodlands)
|
||||
temp_max = -0.5, -- 55 <20>C (too hot?)
|
||||
temp_min = 0.75, -- -12 <20>C
|
||||
},
|
||||
"abstract_ferns.grow_fern"
|
||||
abstract_ferns.grow_fern
|
||||
)
|
||||
end
|
||||
|
||||
@ -177,7 +177,7 @@ plantslib:register_generate_plant({ -- near stone (mountains)
|
||||
temp_max = -0.5, -- 55 <20>C (too hot?)
|
||||
temp_min = 0.75, -- -12 <20>C
|
||||
},
|
||||
"abstract_ferns.grow_fern"
|
||||
abstract_ferns.grow_fern
|
||||
)
|
||||
end
|
||||
|
||||
@ -214,7 +214,7 @@ plantslib:register_generate_plant({ -- near ores (potential mining sites)
|
||||
temp_max = -0.5, -- 55 <20>C (too hot?)
|
||||
temp_min = 0.75, -- -12 <20>C
|
||||
},
|
||||
"abstract_ferns.grow_fern"
|
||||
abstract_ferns.grow_fern
|
||||
)
|
||||
end
|
||||
|
||||
@ -244,6 +244,6 @@ plantslib:register_generate_plant({
|
||||
temp_max = -0.5, -- 55 <20>C (too hot?)
|
||||
temp_min = 0.75, -- -12 <20>C
|
||||
},
|
||||
"abstract_ferns.grow_fern"
|
||||
abstract_ferns.grow_fern
|
||||
)
|
||||
end
|
||||
|
Reference in New Issue
Block a user