From 1a2238b5b42109b20fe81bcf55c5b654693487ce Mon Sep 17 00:00:00 2001 From: swaaws Date: Thu, 31 Jul 2014 16:09:21 +0200 Subject: [PATCH] Update nodes.lua enable cactus damage --- mods/default/nodes.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mods/default/nodes.lua b/mods/default/nodes.lua index 78e74898..8cb3522c 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -348,6 +348,8 @@ minetest.register_node("default:cactus", { tiles = {"default_cactus_top.png", "default_cactus_top.png", "default_cactus_side.png"}, paramtype2 = "facedir", is_ground_content = true, + walkable = false, + damage_per_second = 4, groups = {snappy=1,choppy=3}, sounds = default.node_sound_wood_defaults(), on_place = minetest.rotate_node,