From dc1b4544c187a9550475b787337f71279c68c81b Mon Sep 17 00:00:00 2001 From: Duane Date: Thu, 30 Jun 2016 01:42:12 -0500 Subject: [PATCH] Make crumbly stone cracky as well. --- deco_caves.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deco_caves.lua b/deco_caves.lua index eff0a37..c0d5c6d 100644 --- a/deco_caves.lua +++ b/deco_caves.lua @@ -322,7 +322,7 @@ end newnode = fun_caves.clone_node("default:stone") newnode.description = "Cave Stone With Algae" newnode.tiles = {"default_stone.png^fun_caves_algae.png"} -newnode.groups = {stone=1, crumbly=3} +newnode.groups = {stone=1, cracky=3, crumbly=3} newnode.sounds = default.node_sound_dirt_defaults({ footstep = {name="default_grass_footstep", gain=0.25}, }) @@ -345,7 +345,7 @@ minetest.register_node("fun_caves:hot_stone", { newnode = fun_caves.clone_node("default:stone") newnode.description = "Cave Stone With Lichen" newnode.tiles = {"default_stone.png^fun_caves_lichen.png"} -newnode.groups = {stone=1, crumbly=3} +newnode.groups = {stone=1, cracky=3, crumbly=3} newnode.sounds = default.node_sound_dirt_defaults({ footstep = {name="default_grass_footstep", gain=0.25}, }) @@ -355,7 +355,7 @@ minetest.register_node("fun_caves:stone_with_lichen", newnode) newnode = fun_caves.clone_node("default:stone") newnode.description = "Cave Stone With Moss" newnode.tiles = {"default_stone.png^fun_caves_moss.png"} -newnode.groups = {stone=1, crumbly=3} +newnode.groups = {stone=1, cracky=3, crumbly=3} newnode.sounds = default.node_sound_dirt_defaults({ footstep = {name="default_grass_footstep", gain=0.25}, })