| 2682 | } |
| 2683 | |
| 2684 | static int maps_ensureTileBlock(lua_State *L) |
| 2685 | { |
| 2686 | auto pos = CheckCoordXYZ(L, 1, true); |
| 2687 | Lua::PushDFObject(L, Maps::ensureTileBlock(pos)); |
| 2688 | return 1; |
| 2689 | } |
| 2690 | |
| 2691 | static int maps_getTileType(lua_State *L) |
| 2692 | { |
nothing calls this directly
no test coverage detected