diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-09-12 00:20:52 -0600 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-09-12 00:20:52 -0600 |
commit | 46bffd82d38ded68bcf102efd25da06a96e64a5d (patch) | |
tree | d9bc253c93583ca9087e890afa5f9309fe340126 /class_layout.lua | |
parent | 15b327c842ebe4189ceae16a419dce974c8b2451 (diff) |
standardize config settings
Diffstat (limited to 'class_layout.lua')
-rw-r--r-- | class_layout.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/class_layout.lua b/class_layout.lua index 0aa139e..d516870 100644 --- a/class_layout.lua +++ b/class_layout.lua @@ -86,7 +86,7 @@ function DigtronLayout.create(pos, player) self.water_touching = true elseif minetest.get_item_group(node.name, "lava") ~= 0 then self.lava_touching = true - if digtron.lava_impassible == true then + if digtron.config.lava_impassible then self.protected:set(testpos.x, testpos.y, testpos.z, true) end end |