Fixed salt conflict
This commit is contained in:
parent
aeae04b589
commit
8575f779b6
@ -302,7 +302,7 @@ minetest.register_craft( {
|
|||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
output = "bbq:grilled_pizza_raw 3",
|
output = "bbq:grilled_pizza_raw 3",
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
recipe = {"group:food_cheese", "group:food_pepper", "bbq:grilled_tomato", "flowers:mushroom_brown", "bbq:sea_salt", "farming:wheat", "bbq:yeast"}
|
recipe = {"group:food_cheese", "group:food_pepper", "bbq:grilled_tomato", "flowers:mushroom_brown", "group:food_salt", "farming:wheat", "bbq:yeast"}
|
||||||
})
|
})
|
||||||
|
|
||||||
--Bacon Craft Recipe
|
--Bacon Craft Recipe
|
||||||
@ -446,7 +446,7 @@ minetest.register_craft( {
|
|||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
output = "bbq:brine",
|
output = "bbq:brine",
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
recipe = {"bbq:sea_salt", "group:food_sugar", "bucket:bucket_water", "vessels:drinking_glass"},
|
recipe = {"group:food_salt", "group:food_sugar", "bucket:bucket_water", "vessels:drinking_glass"},
|
||||||
replacements = {{"bucket:bucket_water","bucket:bucket_empty"}},
|
replacements = {{"bucket:bucket_water","bucket:bucket_empty"}},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -709,7 +709,7 @@ minetest.register_node("bbq:sea_salt", {
|
|||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
tiles = {"bbq_sea_salt.png"},
|
tiles = {"bbq_sea_salt.png"},
|
||||||
groups = {vessel = 1, dig_immediate = 3, attached_node = 1},
|
groups = {food_salt=1, vessel = 1, dig_immediate = 3, attached_node = 1},
|
||||||
sounds = default.node_sound_glass_defaults(),
|
sounds = default.node_sound_glass_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user