The stair pick idea is nice, However, I was not able to create corner stairs or upside down stairs. This means I actually do have to craft and place stairs, which I wanted to avoid.
There is a slight visual flicker when a node is turned into a stair. I think this happens because the node is being removed before it is placed. Since the code is old (2013), I assume that back then it might have been necessary, but nowadays I would use minetest.set_node()to get flicker-free stair picking.
The stair pick idea is nice, However, I was not able to create corner stairs or upside down stairs. This means I actually do have to craft and place stairs, which I wanted to avoid.
There is a slight visual flicker when a node is turned into a stair. I think this happens because the node is being removed before it is placed. Since the code is old (2013), I assume that back then it might have been necessary, but nowadays I would use
minetest.set_node()
to get flicker-free stair picking.