Minetest_game: All 3 sands craft to sandstone, sandstone crafts to 1 sand type

Created on 5 Jan 2017  路  6Comments  路  Source: minetest/minetest_game

minetest.register_craft({
    output = 'default:sandstone',
    recipe = {
        {'group:sand', 'group:sand'},
        {'group:sand', 'group:sand'},
    }
})

minetest.register_craft({
    output = 'default:sand 4',
    recipe = {
        {'default:sandstone'},
    }
})

Therefore sand can be converted into another sand and silver sand creates yellow sandstone.
I suggest sandstone is linked exclusively to default:sand as it's the correct colour.
I'll make a PR.

Request / Suggestion

Most helpful comment

Which makes it better to include this change: https://github.com/minetest/minetest_game/issues/1477

All 6 comments

Therefore sand can be converted into another sand and silver sand creates yellow sandstone.

You mean, you can take silver or desert sand - and make yellow sandstone from it, and than simple sand from this sandstone?

Yes.

Which makes it better to include this change: https://github.com/minetest/minetest_game/issues/1477

Natural stones tend to be added when needed in mapgen, so new sandstones are unlikely to be added.

PR #1504

1504 merged.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

juozaspo picture juozaspo  路  6Comments

FeXoR-o-Illuria picture FeXoR-o-Illuria  路  4Comments

Fixer-007 picture Fixer-007  路  6Comments

paanrama picture paanrama  路  4Comments

cx384 picture cx384  路  6Comments