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 /flowing_logic.lua | |
parent | 7d70d79cdac6f44a5409e78e93bbcb419e1c3958 (diff) |
Replace deprecated methods: (#179)
- 'setting_get' with 'settings:get'
- 'setting_getbool' with 'settings:get_bool'
Diffstat (limited to 'flowing_logic.lua')
-rw-r--r-- | flowing_logic.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flowing_logic.lua b/flowing_logic.lua index e1c0bf5..632baa6 100644 --- a/flowing_logic.lua +++ b/flowing_logic.lua @@ -4,7 +4,7 @@ -- Contributed by mauvebic, 2013-01-03, rewritten a bit by Vanessa Ezekowitz -- -local finitewater = minetest.setting_getbool("liquid_finite") +local finitewater = minetest.settings:get_bool("liquid_finite") pipeworks.check_for_liquids = function(pos) local coords = { |