Make sand non-diggable

This commit is contained in:
Wuzzy 2016-11-09 21:16:53 +01:00
parent 6b306086cf
commit 05a8bf7791

View File

@ -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(),
})