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.
This commit is contained in:
parent
a11cd3c741
commit
442654df1f
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user