From a096f2d33df0fd65cb3086d7f8c5ca5507fc8163 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 1 Mar 2017 16:53:03 +0100 Subject: [PATCH] Allow to fill up glass bottles with water --- mods/ITEMS/mcl_potions/init.lua | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/mods/ITEMS/mcl_potions/init.lua b/mods/ITEMS/mcl_potions/init.lua index 66d09ee63..bc92e1644 100644 --- a/mods/ITEMS/mcl_potions/init.lua +++ b/mods/ITEMS/mcl_potions/init.lua @@ -17,6 +17,32 @@ minetest.register_craftitem("mcl_potions:glass_bottle", { inventory_image = "mcl_potions_potion_bottle_empty.png", wield_image = "mcl_potions_potion_bottle_empty.png", groups = {brewitem=1}, + liquids_pointable = true, + on_place = function(itemstack, placer, pointed_thing) + if pointed_thing.type == "node" then + local node = minetest.get_node(pointed_thing.under) + local def = minetest.registered_nodes[node.name] + -- Try to fill glass bottle with water + -- TODO: Also support cauldrons + if def.groups and def.groups.water and def.liquidtype == "source" then + -- Replace with water bottle, if possible, otherwise + -- place the water potion at a place where's space + local water_bottle = ItemStack("mcl_potions:potion_water") + if itemstack:get_count() == 1 then + return water_bottle + else + local inv = placer:get_inventory() + if inv:room_for_item("main", water_bottle) then + inv:add_item("main", water_bottle) + else + minetest.add_item(placer:getpos(), water_bottle) + end + itemstack:take_item() + end + end + end + return itemstack + end, }) minetest.register_craft( {