diff --git a/mods/ITEMS/mcl_core/functions.lua b/mods/ITEMS/mcl_core/functions.lua index 719939b53..a7b74415d 100644 --- a/mods/ITEMS/mcl_core/functions.lua +++ b/mods/ITEMS/mcl_core/functions.lua @@ -108,6 +108,9 @@ local liquid_flow_action = function(pos, group, action) return false end local d = minetest.registered_nodes[n.name] + if not d then + return false + end --[[ Check if we want to perform the liquid action. * 1: Item must be in liquid group * 2a: If target node is below liquid, always succeed