Time Nick Message 13:50 stefferoo hi 13:50 stefferoo my daughter started to play minetest at school and i wanted to creat a server that can be public so all my daughters friends can go on 22:24 ExcaliburZero I am currently working on a mod that has a node, which when placed, clears many blocks below it and replaces them with a ladder. I have gotten most of it done, but I cannot get the ladders, that it creates, to face a set direction. How can that be done? 22:42 PilzAdam with param2 22:43 PilzAdam just do something like: minetest.env:set_node(pos, {name="default:ladder", param2=1}) 22:43 PilzAdam you need to find the correct param2, though 22:43 ExcaliburZero Ok, I'll try that.