Make ice slippery

This commit is contained in:
rubenwardy 2017-08-13 01:23:08 +01:00
parent b431ae1c77
commit 20687a6301
2 changed files with 2 additions and 2 deletions

View File

@ -560,7 +560,7 @@ minetest.register_node("default:ice", {
tiles = {"default_ice.png"}, tiles = {"default_ice.png"},
is_ground_content = false, is_ground_content = false,
paramtype = "light", paramtype = "light",
groups = {cracky = 3, puts_out_fire = 1, cools_lava = 1}, groups = {cracky = 3, puts_out_fire = 1, cools_lava = 1, slippery = 3},
sounds = default.node_sound_glass_defaults(), sounds = default.node_sound_glass_defaults(),
}) })

View File

@ -765,7 +765,7 @@ stairs.register_stair_and_slab(
stairs.register_stair_and_slab( stairs.register_stair_and_slab(
"ice", "ice",
"default:ice", "default:ice",
{cracky = 3, puts_out_fire = 1, cools_lava = 1}, {cracky = 3, puts_out_fire = 1, cools_lava = 1, slippery = 3},
{"default_ice.png"}, {"default_ice.png"},
"Ice Stair", "Ice Stair",
"Ice Slab", "Ice Slab",