Update nodes.lua

enable cactus damage
This commit is contained in:
swaaws 2014-07-31 16:09:21 +02:00
parent 0f2ced9316
commit 1a2238b5b4

View file

@ -348,6 +348,8 @@ minetest.register_node("default:cactus", {
tiles = {"default_cactus_top.png", "default_cactus_top.png", "default_cactus_side.png"}, tiles = {"default_cactus_top.png", "default_cactus_top.png", "default_cactus_side.png"},
paramtype2 = "facedir", paramtype2 = "facedir",
is_ground_content = true, is_ground_content = true,
walkable = false,
damage_per_second = 4,
groups = {snappy=1,choppy=3}, groups = {snappy=1,choppy=3},
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
on_place = minetest.rotate_node, on_place = minetest.rotate_node,