recipe corrected

This commit is contained in:
Vitaliy Olkhin 2025-01-04 12:01:20 +05:00
parent 8348d37e25
commit 9f6825c4fb

View File

@ -16,8 +16,8 @@ if minetest.get_modpath("technic") and minetest.get_modpath("space_travel") then
input = {'space_travel:space_cobble'},
output = {'space_travel:space_gravel'}
})
minetest.register_recipe({
input={'space_travel:space_gravel'},
output={'default:gravel'}
minetest.register_craft({
output = 'default:gravel',
recipe={{'space_travel:space_gravel'}}
})
end