| 2728 | } |
| 2729 | |
| 2730 | static int maps_getBiomeType(lua_State *L) |
| 2731 | { |
| 2732 | auto pos = CheckCoordXY(L, 1, true); |
| 2733 | lua_pushinteger(L, Maps::getBiomeType(pos.x, pos.y)); |
| 2734 | return 1; |
| 2735 | } |
| 2736 | |
| 2737 | static int maps_isTileAquifer(lua_State* L) |
| 2738 | { |
nothing calls this directly
no test coverage detected