Page 1 of 1

snow and ice stairs feature request.

PostPosted: Sun Mar 26, 2017 21:58
by timsoft
in the basic minetest_game there is a selection of stairs, but no snow and ice stairs.
appending
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
stairs.register_stair_and_slab(
   "ice",
   "default:ice",
   {cracky = 3, puts_out_fire = 1},
   {"default_ice.png"},
   "Ice Stair",
   "Ice Slab",
   default.node_sound_glass_defaults())

stairs.register_stair_and_slab(
   "snow",
   "default:snow",
   {crumbly = 3, puts_out_fire = 1},
   {"default_snow.png"},
   "Snow Stair",
   "Snow Slab",
   default.node_sound_dirt_defaults())


to \games\minetest_game\mods\stairs\init.lua would add those stairs (and slabs).
Is this the right forum for a feature request that it gets added to the basic minetest_game ?
thanks

Re: snow and ice stairs feature request.

PostPosted: Tue Mar 28, 2017 18:10
by Hybrid Dog

Re: snow and ice stairs feature request.

PostPosted: Wed Mar 29, 2017 07:42
by timsoft
many thanks for the pointer. I have the pull here.
https://github.com/minetest/minetest_game/pull/1668