2014-03-09 10:38:18 +01:00
|
|
|
moreblocks.config = {}
|
|
|
|
|
|
|
|
local function getbool_default(setting, default)
|
|
|
|
local value = minetest.setting_getbool(setting)
|
|
|
|
if value == nil then
|
|
|
|
value = default
|
|
|
|
end
|
|
|
|
return value
|
|
|
|
end
|
|
|
|
|
|
|
|
local function setting(settingtype, name, default)
|
|
|
|
if settingtype == "bool" then
|
|
|
|
moreblocks.config[name] =
|
2014-05-02 11:45:03 +02:00
|
|
|
getbool_default("moreblocks." .. name, default)
|
2014-03-09 10:38:18 +01:00
|
|
|
else
|
|
|
|
moreblocks.config[name] =
|
2014-05-02 11:45:03 +02:00
|
|
|
minetest.setting_get("moreblocks." .. name) or default
|
2014-03-09 10:38:18 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-05-05 21:33:24 +02:00
|
|
|
-- Whether to direct wood based on player posititon when placing the block (true or false).
|
2014-03-09 10:38:18 +01:00
|
|
|
setting("bool", "wood_facedir", true)
|
|
|
|
|
2014-05-02 11:45:03 +02:00
|
|
|
-- Show stairs/slabs/panels/microblocks in creative inventory (true or false).
|
2014-03-09 10:38:18 +01:00
|
|
|
setting("bool", "show_stairsplus_creative_inv", false)
|