forked from MineClone5/MineClone5
Fix code typo in mcl_playerplus
This commit is contained in:
parent
ad70a71f8c
commit
131051b1df
|
@ -28,7 +28,7 @@ minetest.register_globalstep(function(dtime)
|
||||||
if not node_stand or not node_stand_below or not node_head or not node_feet then
|
if not node_stand or not node_stand_below or not node_head or not node_feet then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
if not minetest.registered_nodes[node_stand] or not minetest.registered_node[node_stand_below] or not minetest.registered_nodes[node_head] or not minetest.registered_nodes[node_feet] then
|
if not minetest.registered_nodes[node_stand] or not minetest.registered_nodes[node_stand_below] or not minetest.registered_nodes[node_head] or not minetest.registered_nodes[node_feet] then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue