From b206897202ca7de678362913f7593f00a65c9c84 Mon Sep 17 00:00:00 2001 From: tenplus1 Date: Fri, 20 Jan 2023 09:59:45 +0000 Subject: [PATCH] hide old quicksand node in creative --- dirt.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dirt.lua b/dirt.lua index e153d55..a274223 100644 --- a/dirt.lua +++ b/dirt.lua @@ -283,7 +283,8 @@ minetest.register_node("ethereal:quicksand", { walkable = false, climbable = false, post_effect_color = {r = 230, g = 210, b = 160, a = 245}, - groups = {crumbly = 3, sand = 1, liquid = 3, disable_jump = 1}, + groups = {crumbly = 3, sand = 1, liquid = 3, disable_jump = 1, + not_in_creative_inventory = 1}, sounds = default.node_sound_sand_defaults() })