From bf12ce5412ec2094f59626349e7e0743534c2abd Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 11 Mar 2017 21:26:45 +0100 Subject: [PATCH] Fishing gives water bottle instead of glass bottle --- mods/ITEMS/mcl_fishing/init.lua | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/mods/ITEMS/mcl_fishing/init.lua b/mods/ITEMS/mcl_fishing/init.lua index 7719f95c4..b0fb38a7f 100644 --- a/mods/ITEMS/mcl_fishing/init.lua +++ b/mods/ITEMS/mcl_fishing/init.lua @@ -45,8 +45,7 @@ local go_fishing = function(itemstack, user, pointed_thing) elseif r <= 52 then itemname = "mcl_mobitems:string" elseif r <= 62 then - itemname = "mcl_potions:glass_bottle" - --TODO itemname = "mcl_potions:bottle_water" + itemname = "mcl_potions:potion_water" elseif r <= 72 then itemname = "mcl_mobitems:bone" elseif r <= 73 then @@ -60,14 +59,14 @@ local go_fishing = function(itemstack, user, pointed_thing) -- Treasure r = math.random(1, 6) if r == 1 then - -- TODO: Enchanted + -- TODO: Enchanted bow itemname = "mcl_throwing:bow" itemwear = math.random(49144, 65535) -- 75%-100% damaged elseif r == 2 then -- TODO: Enchanted book itemname = "mcl_books:book" elseif r == 3 then - -- TODO: Enchanted + -- TODO: Enchanted fishing rod itemname = "mcl_fishing:fishing_rod" itemwear = math.random(49144, 65535) -- 75%-100% damaged elseif r == 4 then