| 2945 | }; |
| 2946 | |
| 2947 | static int buildings_findAtTile(lua_State *L) |
| 2948 | { |
| 2949 | auto pos = CheckCoordXYZ(L, 1, true); |
| 2950 | Lua::PushDFObject(L, Buildings::findAtTile(pos)); |
| 2951 | return 1; |
| 2952 | } |
| 2953 | |
| 2954 | static int buildings_findCivzonesAt(lua_State *L) |
| 2955 | { |
nothing calls this directly
no test coverage detected