mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-10 01:33:52 +01:00
Make ice slippery
This commit is contained in:
parent
b431ae1c77
commit
20687a6301
@ -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(),
|
||||
})
|
||||
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user