mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-03 08:40:36 +02:00
Replace deprecated method 'setting_getbool' with 'settings:get_bool' (#369)
This commit is contained in:
committed by
Vanessa Ezekowitz
parent
9cc1a78371
commit
97e1c8b7f2
@ -3,7 +3,7 @@ local S = technic.getter
|
||||
|
||||
frames = {}
|
||||
|
||||
local infinite_stacks = minetest.setting_getbool("creative_mode") and minetest.get_modpath("unified_inventory") == nil
|
||||
local infinite_stacks = minetest.settings:get_bool("creative_mode") and minetest.get_modpath("unified_inventory") == nil
|
||||
|
||||
local frames_pos = {}
|
||||
|
||||
|
Reference in New Issue
Block a user