1
0
mirror of https://github.com/mt-mods/plantlife_modpack.git synced 2025-07-16 06:40:33 +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:
Vanessa Ezekowitz
2014-08-15 10:09:01 -04:00
parent 7f4fc1d553
commit da732bb18e
14 changed files with 36 additions and 31 deletions

View File

@ -151,7 +151,7 @@ plantslib:register_generate_plant({
temp_max = -0.5, -- 55 <20>C
temp_min = 0.53, -- 0 <20>C, dies back in winter
},
"abstract_ferns.grow_horsetail"
abstract_ferns.grow_horsetail
)
end
@ -173,6 +173,6 @@ plantslib:register_generate_plant({
temp_max = -0.5, -- 55 <20>C
temp_min = 0.53, -- 0 <20>C, dies back in winter
},
"abstract_ferns.grow_horsetail"
abstract_ferns.grow_horsetail
)
end