| 2675 | } |
| 2676 | |
| 2677 | static int maps_getTileBlock(lua_State *L) |
| 2678 | { |
| 2679 | auto pos = CheckCoordXYZ(L, 1, true); |
| 2680 | Lua::PushDFObject(L, Maps::getTileBlock(pos)); |
| 2681 | return 1; |
| 2682 | } |
| 2683 | |
| 2684 | static int maps_ensureTileBlock(lua_State *L) |
| 2685 | { |
nothing calls this directly
no test coverage detected