Add an alternative recipe for "ccompass:0" (#19)

The current one collides with "digtron:digtron_core"
This commit is contained in:
nixnoxus 2021-07-21 13:15:00 +02:00 committed by GitHub
parent 4213e60d11
commit 21ccde6deb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -391,4 +391,13 @@ minetest.register_craft({
{'', 'default:steel_ingot', ''}
}
})
-- add an alternative recipe
minetest.register_craft({
output = 'ccompass:0',
recipe = {
{'default:steel_ingot', '', 'default:steel_ingot'},
{'', 'default:mese_crystal_fragment', ''},
{'default:steel_ingot', '', 'default:steel_ingot'}
}
})