Use mcl_redstone.swap_node for cauldrons

This commit is contained in:
cora 2024-12-02 19:19:51 +01:00 committed by ryvnf
parent 483d9b159c
commit 23001ffd8e

View File

@ -86,7 +86,7 @@ function mcl_cauldrons.add_level(pos, amount, liquid)
sound_take(liquid_nodes[liquid], pos)
end
node.name = mcl_cauldrons.get_cauldron_name(water_level + amount, liquid)
minetest.swap_node(pos, node)
mcl_redstone.swap_node(pos, node)
return true
end
end