From 220886d4a0f9f18fb16c8199554b845d45271857 Mon Sep 17 00:00:00 2001 From: Evert Prants Date: Sat, 23 Nov 2019 15:52:54 +0200 Subject: [PATCH] i forgot about this --- cauldron.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cauldron.lua b/cauldron.lua index 04ec843..1b318fd 100644 --- a/cauldron.lua +++ b/cauldron.lua @@ -1,6 +1,4 @@ -local _fldlib = minetest.get_modpath("fluid_lib") ~= nil - magicalities.cauldron = { recipes = {} } function magicalities.cauldron.register_recipe(data) @@ -134,7 +132,7 @@ local _clddef = { end, on_rightclick = function(pos, node, clicker, itemstack, pointed_thing) if node.name ~= "magicalities:cauldron" then return itemstack end - if itemstack:get_name() == "bucket:bucket_water" and not _fldlib then + if itemstack:get_name() == "bucket:bucket_water" then node.name = "magicalities:cauldron_with_water" minetest.swap_node(pos, node) return ItemStack("bucket:bucket_empty")