Update cart_entity.lua

This commit is contained in:
thunderdog1138 2019-12-12 18:10:29 -05:00 committed by GitHub
parent deab69dee0
commit 9f77c8e65b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -427,7 +427,7 @@ minetest.register_craftitem("carts:cart", {
minetest.register_craft({
output = "carts:cart",
recipe = {
{"default:steel_ingot", "", "default:steel_ingot"},
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
{"default:durasteel_ingot", "", "default:durasteel_ingot"},
{"default:durasteel_ingot", "default:durasteel_ingot", "default:durasteel_ingot"},
},
})