Skip to content
Snippets Groups Projects
Commit 1758db91 authored by Tuxilio's avatar Tuxilio
Browse files

Add new file

parent 35714fe6
No related branches found
No related tags found
No related merge requests found
-- Block hinzufügen
minetest.register_node("meinemod:blockname", {
description = "Mein Block",
tiles = {"meinemod_blockname.png"},
is_ground_content = true,
groups = {cracky=3, stone=1}
})
minetest.register_craft({
type = "shaped",
output = "meinemod:blockname 2",
recipe = {
{"" , "" , "default:dirt"},
{"" , "default:dirt", "default:dirt"},
{"default:dirt", "default:dirt", "default:dirt"}
}
})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment