From 05a8bf7791a42cd06d2399a07e102a49a44703f2 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 9 Nov 2016 21:16:53 +0100 Subject: [PATCH] Make sand non-diggable --- mods/default/nodes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/default/nodes.lua b/mods/default/nodes.lua index fcad369..cb2a0cb 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -81,7 +81,7 @@ minetest.register_node("default:sand", { description = S("sand"), tiles = {"default_sand.png"}, is_ground_content = true, - groups = {crumbly=3, falling_node=1, sand=1}, + groups = {immortal=1, falling_node=1}, sounds = default.node_sound_sand_defaults(), })