From ed85e3258bf2f68d332dd1c1cac024e825cb9063 Mon Sep 17 00:00:00 2001 From: ANAND Date: Tue, 19 Mar 2019 22:34:25 +0530 Subject: [PATCH] Fix indestructible snow and ice not being slippery (#377) --- mods/ctf/ctf_map/nodes.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/ctf/ctf_map/nodes.lua b/mods/ctf/ctf_map/nodes.lua index 9330eda..f033e84 100644 --- a/mods/ctf/ctf_map/nodes.lua +++ b/mods/ctf/ctf_map/nodes.lua @@ -344,7 +344,7 @@ do {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5}, }, }, - groups = {immortal = 1}, + groups = {immortal = 1, slippery = 2}, sounds = default.node_sound_dirt_defaults({ footstep = {name = "default_snow_footstep", gain = 0.15}, dug = {name = "default_snow_footstep", gain = 0.2}, @@ -355,7 +355,7 @@ do minetest.register_node("ctf_map:snowblock", { description = "Indestructible Snow Block", tiles = {"default_snow.png"}, - groups = {immortal = 1}, + groups = {immortal = 1, slippery = 2}, sounds = default.node_sound_dirt_defaults({ footstep = {name = "default_snow_footstep", gain = 0.15}, dug = {name = "default_snow_footstep", gain = 0.2}, @@ -368,7 +368,7 @@ do tiles = {"default_ice.png"}, is_ground_content = false, paramtype = "light", - groups = {immortal = 1}, + groups = {immortal = 1, slippery = 4}, sounds = default.node_sound_glass_defaults(), })