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