Skip to content

Commit

Permalink
Make ice slippery
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenwardy committed Aug 14, 2017
1 parent b431ae1 commit 20687a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mods/default/nodes.lua
Expand Up @@ -560,7 +560,7 @@ minetest.register_node("default:ice", {
tiles = {"default_ice.png"},
is_ground_content = false,
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(),
})
Expand Down
2 changes: 1 addition & 1 deletion mods/stairs/init.lua
Expand Up @@ -765,7 +765,7 @@ stairs.register_stair_and_slab(
stairs.register_stair_and_slab(
"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"},
"Ice Stair",
"Ice Slab",
Expand Down

0 comments on commit 20687a6

Please sign in to comment.