Fix deprecated call of Minetest settings

This commit is contained in:
bri cassa 2021-03-02 23:48:23 +01:00
parent 565558358d
commit 9ae537f8a7
1 changed files with 1 additions and 1 deletions

View File

@ -52,6 +52,6 @@ for _, row in ipairs(paintings.dyes) do
})
end
if minetest.setting_getbool("log_mods") then
if minetest.settings:get_bool("log_mods") then
minetest.log("action", "Carbone: [paintings] loaded.")
end