Time Nick Message 17:37 Lionsden Hi, I have a question. I'm trying to modify the lightsplus code and am wondering how to set the param2 of a node when I use minetest.env:add_node or if there is a way to set it after the node has been placed. I do have the pos of the node and the code I am modifying has the following example: minetest.env:add_node(pos, {name="lightstest:slab_light_on"}) 17:50 Lionsden Nevermind, I found that if I added some code, I could set it in the code sample above. Here is my modified example: minetest.env:add_node(pos, {name="lightstest:slab_light_on", param2=node.param2,}) 17:51 Lionsden I got it working. Thanks for at least looking. :)