1
0
mirror of https://github.com/mt-mods/plantlife_modpack.git synced 2025-07-16 14:50:32 +02:00

Renamed config/settings var names

This commit is contained in:
Craig Robbins
2014-08-22 17:04:34 +10:00
committed by Vanessa Ezekowitz
parent c19eb709d8
commit 6583cff894
6 changed files with 34 additions and 34 deletions

View File

@ -10,19 +10,19 @@ abstract_ferns = {}
dofile(minetest.get_modpath("ferns").."/settings.lua")
if abstract_ferns.config.Lady_fern == true then
if abstract_ferns.config.enable_lady_fern == true then
dofile(minetest.get_modpath("ferns").."/fern.lua")
end
if abstract_ferns.config.Horsetails == true then
if abstract_ferns.config.enable_horsetails == true then
dofile(minetest.get_modpath("ferns").."/horsetail.lua")
end
if abstract_ferns.config.Tree_Fern == true then
if abstract_ferns.config.enable_treefern == true then
dofile(minetest.get_modpath("ferns").."/treefern.lua")
end
if abstract_ferns.config.Giant_Tree_Fern == true then
if abstract_ferns.config.enable_giant_treefern == true then
dofile(minetest.get_modpath("ferns").."/gianttreefern.lua")
end