2015-01-11 22:21:33 +01:00
|
|
|
--[[
|
2015-01-12 17:46:22 +01:00
|
|
|
More Blocks: configuration handling
|
2015-01-11 22:21:33 +01:00
|
|
|
|
2017-02-19 13:35:16 +01:00
|
|
|
Copyright (c) 2011-2017 Hugo Locurcio and contributors.
|
2015-01-11 22:21:33 +01:00
|
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
|
|
--]]
|
|
|
|
|
2014-03-09 10:38:18 +01:00
|
|
|
moreblocks.config = {}
|
|
|
|
|
|
|
|
local function getbool_default(setting, default)
|
2017-05-13 04:12:56 +02:00
|
|
|
local value = minetest.settings:get_bool(setting)
|
2014-03-09 10:38:18 +01:00
|
|
|
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] =
|
2017-05-13 04:12:56 +02:00
|
|
|
minetest.settings:get("moreblocks." .. name) or default
|
2014-03-09 10:38:18 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-06-27 20:14:08 +02:00
|
|
|
-- Show stairs/slabs/panels/microblocks in creative inventory (true or false):
|
|
|
|
setting("bool", "stairsplus_in_creative_inventory", false)
|