Eliminate crumbly, cracky, snappy and choppy fully

This commit is contained in:
Wuzzy 2017-02-27 18:53:17 +01:00
parent 4ec6f5a3ec
commit 6b3db0ae72
7 changed files with 37 additions and 23 deletions

View file

@ -11,13 +11,11 @@ Example Usage
-------------
minetest.register_node("somemod:someblock", {
description = key,
description = "Talking Block",
tiles = {"somemod_someblock.png"},
groups = {cracky=1},
on_walk_over = function(pos, node, player)
minetest.chat_send_player(player, "Hey! Watch it!")
end
on_walk_over = function(pos, node, player)
minetest.chat_send_player(player, "Hey! Watch it!")
end
})