mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2024-11-10 12:20:29 +01:00
7347b05e3e
- 'setting_get' with 'settings:get' - 'setting_getbool' with 'settings:get_bool'
30 lines
764 B
Lua
30 lines
764 B
Lua
--[[
|
|
More Blocks: configuration handling
|
|
|
|
Copyright (c) 2011-2017 Hugo Locurcio and contributors.
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
--]]
|
|
|
|
moreblocks.config = {}
|
|
|
|
local function getbool_default(setting, default)
|
|
local value = minetest.settings:get_bool(setting)
|
|
if value == nil then
|
|
value = default
|
|
end
|
|
return value
|
|
end
|
|
|
|
local function setting(settingtype, name, default)
|
|
if settingtype == "bool" then
|
|
moreblocks.config[name] =
|
|
getbool_default("moreblocks." .. name, default)
|
|
else
|
|
moreblocks.config[name] =
|
|
minetest.settings:get("moreblocks." .. name) or default
|
|
end
|
|
end
|
|
|
|
-- Show stairs/slabs/panels/microblocks in creative inventory (true or false):
|
|
setting("bool", "stairsplus_in_creative_inventory", false)
|