diff options
author | Jordan Irwin <antumdeluge@gmail.com> | 2017-05-18 02:33:56 -0700 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-05-18 05:33:56 -0400 |
commit | 69d994a2a28b435a5cc37528fccce04c44d1d5ba (patch) | |
tree | ca7ca1d2071f3b52ef1646b95c8cfe2c1727e868 /luaentity.lua | |
parent | 7d70d79cdac6f44a5409e78e93bbcb419e1c3958 (diff) |
Replace deprecated methods: (#179)
- 'setting_get' with 'settings:get'
- 'setting_getbool' with 'settings:get_bool'
Diffstat (limited to 'luaentity.lua')
-rw-r--r-- | luaentity.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/luaentity.lua b/luaentity.lua index ab7280c..382b0c1 100644 --- a/luaentity.lua +++ b/luaentity.lua @@ -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()) |