From 945bc01568a0e655b3e890008748a06bf1073109 Mon Sep 17 00:00:00 2001 From: D00Med Date: Wed, 17 Aug 2016 18:40:26 +1000 Subject: [PATCH] bugfixes >fixed dodgy potion bugs(the irony!) >fixed heal potion related recipes --- init.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/init.lua b/init.lua index d4b97fd..1268c42 100644 --- a/init.lua +++ b/init.lua @@ -271,7 +271,7 @@ minetest.register_craft({ output = 'witchcraft:splash_yellwgrn', recipe = { {'vessels:glass_fragments'}, - {'witchcraft:potion_yellgrn'}, + {'witchcraft:potion_yllwgrn'}, } }) @@ -400,11 +400,11 @@ witchcraft.pot = { {"darkpurple", "cyan", "flowers:mushroom_red", "green", "moreplants:weed", "yellow", "redbrown"}, {"purple", "blue2", "flowers:waterlily", "gpurple", "default:mese_crystal", "magenta", "darkpurple"}, {"magenta", "purple", "witchcraft:bottle_eyes", "darkpurple", "moreplants:mushroom", "purple", "darkpurple"}, - {"red", "grey", "default:gravel", "red", "default:apple", "blue", "purple"}, + {"red", "grey", "default:gravel", "yllwgrn", "default:flint", "blue", "purple"}, {"redbrown", "magenta", "flowers:mushroom_brown", "magenta", "default:stone", "grey", "brown"}, {"brown", "gred", "witchcraft:herb", "grey", "moreplants:bush", "red", "redbrown"}, {"orange", "redbrown", "witchcraft:bottle_slime", "yellow", "default:steelblock", "green", "yllwgrn"}, - {"yellow", "yellgrn", "tnt:tnt", "", "", "darkpurple", "redbrown"}, + {"yellow", "yllwgrn", "tnt:tnt", "", "", "darkpurple", "redbrown"}, {"yllwgrn", "green", "default:gold_lump", "orange", "mobs:lava_orb", "grey", "magenta"}, {"green2", "darkpurple", "default:glass", "red", "witchcraft:herb", "blue2", "aqua"}, {"green", "green2", "default:apple", "ggreen", "default:mese_crystal", "orange", "yllwgrn"}, @@ -413,7 +413,7 @@ witchcraft.pot = { {"grey", "orange", "default:torch", "brown", "default:apple", "yllwgrn", "magenta"}, {"ggreen", "", "", "", "", "", ""}, {"gpurple", "", "", "", "", "", ""}, - {"gred", "", "", "", "", "", ""}, + {"gred", "red", "default:apple", "grey", "default:gravel", "", ""}, {"gcyan", "", "", "", "", "", ""}, } @@ -1710,7 +1710,7 @@ minetest.register_node("witchcraft:potion_brown_2", { --cannot get the potion to be removed from inventory on use? -minetest.register_node("witchcraft:potion_yellgrn", { +minetest.register_node("witchcraft:potion_yllwgrn", { description = "Dodgy Potion", drawtype = "plantlike", tiles = {"witchcraft_potion_yellgrn.png"}, @@ -1732,7 +1732,7 @@ minetest.register_node("witchcraft:potion_yellgrn", { end, }) -minetest.register_node("witchcraft:potion_yellgrn_2", { +minetest.register_node("witchcraft:potion_yllwgrn_2", { description = "Dodgy Potion (lv2)", drawtype = "plantlike", tiles = {"witchcraft_potion_yellgrn.png^[colorize:black:50"},