mirror of
https://github.com/minetest-mods/unified_inventory.git
synced 2025-07-04 09:20:28 +02:00
fix deprecated setting_getbool
This commit is contained in:
6
init.lua
6
init.lua
@ -44,10 +44,10 @@ unified_inventory = {
|
||||
fgettext = function(...) return minetest.formspec_escape(mygettext(...)) end,
|
||||
|
||||
-- "Lite" mode
|
||||
lite_mode = minetest.setting_getbool("unified_inventory_lite"),
|
||||
lite_mode = minetest.settings.get_bool("unified_inventory_lite"),
|
||||
|
||||
-- Trash enabled
|
||||
trash_enabled = (minetest.setting_getbool("unified_inventory_trash") ~= false),
|
||||
trash_enabled = minetest.settings.get_bool("unified_inventory_trash", false),
|
||||
|
||||
pagecols = 8,
|
||||
pagerows = 10,
|
||||
@ -80,7 +80,7 @@ dofile(modpath.."/internal.lua")
|
||||
dofile(modpath.."/callbacks.lua")
|
||||
dofile(modpath.."/register.lua")
|
||||
|
||||
if minetest.setting_getbool("unified_inventory_bags") ~= false then
|
||||
if minetest.settings.get_bool("unified_inventory_bags", false) then
|
||||
dofile(modpath.."/bags.lua")
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user