Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- minetest.register_node(nodename, {
- description = gate.." Gate",
- drawtype = "nodebox",
- paramtype = "light",
- tiles = {
- "jeija_gate_"..onoff..".png^"..
- "jeija_gate_"..gate..".png",
- },
- node_box = {
- type = "fixed",
- fixed = { -6/16, -8/16, -6/16, 6/16, -7/16, 6/16 }
- },
- walkable = true,
- on_construct = function(pos)
- update_gate(pos)
- end,
- groups = groups,
- drop = drop,
- })
RAW Paste Data