Fixed salt conflict

This commit is contained in:
Grizzly Adam 2018-03-14 20:46:10 -05:00 committed by GitHub
parent aeae04b589
commit 8575f779b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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"}},
}) })

View File

@ -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(),
}) })