summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranonymous <neme661@gmail.com>2017-10-02 20:49:23 +0100
committeranonymous <neme661@gmail.com>2017-10-02 20:49:23 +0100
commitf2826937bac77fd2acba37ea5a04055622aa9b5d (patch)
treec2d9ad89c924a9212d526b23b26743d31a2bc954
parent2b84b4a3da5802b0315a2f9f9d1a536de955befa (diff)
Fixed deprecated calls.
-rw-r--r--config.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/config.lua b/config.lua
index a4b905e..63f16ca 100644
--- a/config.lua
+++ b/config.lua
@@ -7,20 +7,20 @@ local print_settingtypes = false
local function setting(stype, name, default, description)
local value
if stype == "bool" then
- value = minetest.setting_getbool(CONFIG_FILE_PREFIX..name)
+ value = minetest.settings:get_bool(CONFIG_FILE_PREFIX..name)
elseif stype == "string" then
- value = minetest.setting_get(CONFIG_FILE_PREFIX..name)
+ value = minetest.settings:get(CONFIG_FILE_PREFIX..name)
elseif stype == "int" or stype == "float" then
- value = tonumber(minetest.setting_get(CONFIG_FILE_PREFIX..name))
+ value = tonumber(minetest.settings:get(CONFIG_FILE_PREFIX..name))
end
if value == nil then
value = default
end
digtron.config[name] = value
-
+
if print_settingtypes then
minetest.debug(CONFIG_FILE_PREFIX..name.." ("..description..") "..stype.." "..tostring(default))
- end
+ end
end
setting("bool", "uses_resources", true, "Digtron uses resources when active")