From 6f59b1442069e94339d0870a37679fd501b00be7 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 26 Aug 2017 16:00:32 +0200 Subject: [PATCH] Add all ice to slippery=3 group --- mods/ITEMS/mcl_core/nodes_base.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/ITEMS/mcl_core/nodes_base.lua b/mods/ITEMS/mcl_core/nodes_base.lua index 2de230c0b..52e1d4e3b 100644 --- a/mods/ITEMS/mcl_core/nodes_base.lua +++ b/mods/ITEMS/mcl_core/nodes_base.lua @@ -725,7 +725,7 @@ minetest.register_node("mcl_core:ice", { paramtype = "light", use_texture_alpha = true, stack_max = 64, - groups = {handy=1,pickaxey=1, building_block=1}, + groups = {handy=1,pickaxey=1, slippery=3, building_block=1}, drop = "", sounds = mcl_sounds.node_sound_glass_defaults(), after_destruct = function(pos, oldnode) @@ -747,7 +747,7 @@ minetest.register_node("mcl_core:packed_ice", { tiles = {"mcl_core_ice_packed.png"}, is_ground_content = true, stack_max = 64, - groups = {handy=1,pickaxey=1, building_block=1}, + groups = {handy=1,pickaxey=1, slippery=3, building_block=1}, drop = "", sounds = mcl_sounds.node_sound_glass_defaults(), _mcl_blast_resistance = 2.5, @@ -794,7 +794,7 @@ for i=0,3 do paramtype = "light", use_texture_alpha = true, stack_max = 64, - groups = {handy=1, frosted_ice=1, not_in_creative_inventory=1}, + groups = {handy=1, frosted_ice=1, slippery=3, not_in_creative_inventory=1}, drop = "", sounds = mcl_sounds.node_sound_glass_defaults(), on_construct = function(pos)