1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-20 03:30:22 +02:00
server-nalc/mods/_misc/sand_swapping.lua

14 lines
238 B
Lua
Raw Normal View History

-- Swap sands
-- desert -> normal
minetest.register_craft({
output = "default:sand",
recipe = {{"default:desert_sand"}}
})
-- normal -> desert
minetest.register_craft({
output = "default:desert_sand",
recipe = {{"default:sand"}}
})