gloopblocks, hotbar, inspector, maptools, mesecons, moreblocks, moreores, technic, teleport_request, and worldedit switched to caverealms_lite (with minor fixes by me) switched to CWz's fork of player_textures The homedecor update brings in the big split, and will require you to re-enable all modpack components in order to avoid loss of content.
30 lines
723 B
Lua
30 lines
723 B
Lua
--[[
|
|
Map Tools: configuration handling
|
|
|
|
Copyright © 2012-2019 Hugo Locurcio and contributors.
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
--]]
|
|
|
|
maptools.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
|
|
maptools.config[name] =
|
|
getbool_default("maptools." .. name, default)
|
|
else
|
|
maptools.config[name] =
|
|
minetest.settings:get("maptools." .. name) or default
|
|
end
|
|
end
|
|
|
|
-- Show Map Tools stuff in creative inventory (1 or 0):
|
|
setting("integer", "hide_from_creative_inventory", 1)
|