Fix mistake in falling_ice.lua

It should be "caverealms:check_attached_node(p, n)" instead of "check_attached_node(p, n)" at line 189.
master
Josh Mars 2017-04-07 10:44:24 -04:00 committed by GitHub
parent a11cd3c741
commit 442654df1f
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ function caverealms:nodeupdate_single(p, delay)
end
if minetest.get_item_group(n.name, "attached_node") ~= 0 then
if not check_attached_node(p, n) then
if not caverealms:check_attached_node(p, n) then
caverealms:drop_attached_node(p)
caverealms:nodeupdate(p)
end