stair("up"); */ stair({ dir = "down" }); */ stair({ dir = "down", x = 4, y = 7 }); */ stair({ dir = "down", coord = {x,y} }); */ stair("down", 4, 7); */ TODO: stair(selection, "down"); */ TODO: stair("up", {x,y}); */
| 4220 | /* TODO: stair(selection, "down"); */ |
| 4221 | /* TODO: stair("up", {x,y}); */ |
| 4222 | int |
| 4223 | lspo_stair(lua_State *L) |
| 4224 | { |
| 4225 | return l_create_stairway(L, FALSE); |
| 4226 | } |
| 4227 | |
| 4228 | /* ladder("down"); */ |
| 4229 | /* ladder("up", 6,10); */ |
nothing calls this directly
no test coverage detected