mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-03 17:10:27 +01:00
11 lines
189 B
Lua
Executable File
11 lines
189 B
Lua
Executable File
-- Craft obsidian
|
|
minetest.register_craft({
|
|
output = "default:obsidian",
|
|
recipe = {
|
|
{"bucket:bucket_lava"},
|
|
},
|
|
replacements = {
|
|
{"bucket:bucket_lava", "bucket:bucket_empty"}
|
|
},
|
|
})
|