Replace deprecated methods: (#179)

- 'setting_get' with 'settings:get'
- 'setting_getbool' with 'settings:get_bool'
This commit is contained in:
Jordan Irwin
2017-05-18 02:33:56 -07:00
committed by Vanessa Ezekowitz
parent 7d70d79cda
commit 69d994a2a2
6 changed files with 7 additions and 7 deletions

View File

@ -71,7 +71,7 @@ end
local active_blocks = {} -- These only contain active blocks near players (i.e., not forceloaded ones)
local move_entities_globalstep_part1 = function(dtime)
local active_block_range = tonumber(minetest.setting_get("active_block_range")) or 2
local active_block_range = tonumber(minetest.settings:get("active_block_range")) or 2
local new_active_blocks = {}
for _, player in ipairs(minetest.get_connected_players()) do
local blockpos = get_blockpos(player:getpos())