| 2721 | } |
| 2722 | |
| 2723 | static int maps_getPlantAtTile(lua_State *L) |
| 2724 | { |
| 2725 | auto pos = CheckCoordXYZ(L, 1, true); |
| 2726 | Lua::PushDFObject(L, Maps::getPlantAtTile(pos)); |
| 2727 | return 1; |
| 2728 | } |
| 2729 | |
| 2730 | static int maps_getBiomeType(lua_State *L) |
| 2731 | { |
nothing calls this directly
no test coverage detected