forked from VoxeLibre/VoxeLibre
Fix potion names, Wuzzy/MineClone2#829
This commit is contained in:
parent
f2d68d909e
commit
28f19fdbb4
|
@ -69,7 +69,7 @@ local fish = function(itemstack, player)
|
|||
{ itemstring = "mcl_mobitems:rotten_flesh", weight = 10 },
|
||||
{ itemstring = "mcl_core:stick", weight = 5 },
|
||||
{ itemstring = "mcl_mobitems:string", weight = 5 },
|
||||
{ itemstring = "mcl_potions:potion_water", weight = 10 },
|
||||
{ itemstring = "mcl_potions:water", weight = 10 },
|
||||
{ itemstring = "mcl_mobitems:bone", weight = 10 },
|
||||
{ itemstring = "mcl_dye:black", weight = 1, amount_min = 10, amount_max = 10 },
|
||||
{ itemstring = "mcl_mobitems:string", weight = 10 }, -- TODO: Tripwire Hook
|
||||
|
|
|
@ -182,7 +182,7 @@ local fill_cauldron = function(cauldron, water_type)
|
|||
end
|
||||
end
|
||||
|
||||
-- Itemstring of potions is “mcl_potions:potion_<NBT Potion Tag>”
|
||||
-- Itemstring of potions is “mcl_potions:<NBT Potion Tag>”
|
||||
|
||||
minetest.register_craftitem("mcl_potions:water", {
|
||||
description = S("Water Bottle"),
|
||||
|
|
|
@ -28,10 +28,10 @@ wieldview.transform = {
|
|||
["mcl_buckets:bucket_lava"]="R270",
|
||||
["mcl_mobitems:milk_bucket"]="R270",
|
||||
["mcl_potions:glass_bottle"]="R270",
|
||||
["mcl_potions:potion_water"]="R270",
|
||||
["mcl_potions:potion_awkward"]="R270",
|
||||
["mcl_potions:potion_thick"]="R270",
|
||||
["mcl_potions:potion_mundane"]="R270",
|
||||
["mcl_potions:water"]="R270",
|
||||
["mcl_potions:awkward"]="R270",
|
||||
["mcl_potions:thick"]="R270",
|
||||
["mcl_potions:mundane"]="R270",
|
||||
|
||||
["screwdriver:screwdriver"]="R270",
|
||||
["screwdriver:screwdriver1"]="R270",
|
||||
|
|
Loading…
Reference in New Issue