From b78d27c8da368feaa32ab3c6d84b90945157bf30 Mon Sep 17 00:00:00 2001 From: D00Med Date: Thu, 18 Aug 2016 17:01:46 +1000 Subject: [PATCH] Fixed Filling potion --- init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.lua b/init.lua index 1268c42..88b4601 100644 --- a/init.lua +++ b/init.lua @@ -2074,11 +2074,11 @@ register_food("witchcraft:potion_gpurple", 10) register_food("witchcraft:potion_gred", -4) else - minetest.register_node("witchcraft:potion_gred", { + minetest.register_node("witchcraft:potion_gpurple", { description = "Filling Potion (better with hunger mod)", drawtype = "plantlike", - tiles = {"witchcraft_potion_red.png"}, - wield_image = "witchcraft_potion_red.png", + tiles = {"witchcraft_potion_purple.png"}, + wield_image = "witchcraft_potion_purple.png", paramtype = "light", stack_max = 1, is_ground_content = false, @@ -2089,7 +2089,7 @@ else }, groups = {vessel=1,dig_immediate=3,attached_node=1, potion=1}, sounds = default.node_sound_glass_defaults(), - inventory_image = "witchcraft_potion_red.png", + inventory_image = "witchcraft_potion_purple.png", on_use = function(itemstack, player) local health = player:get_hp(); player:set_hp(health+20)