Fix incorrect porkchop cooking recipe

This commit is contained in:
Wuzzy 2017-07-20 15:15:27 +02:00
parent 68882b555d
commit 26108c11b9

View File

@ -335,8 +335,8 @@ end
if c("porkchop_raw") and c("porkchop_cooked") then
minetest.register_craft({
type = "cooking",
output = "mobs_mc:porkchop_raw",
recipe = "mobs_mc:porkchop_cooked",
output = "mobs_mc:porkchop_cooked",
recipe = "mobs_mc:porkchop_raw",
cooktime = 5,
})
end