| 2742 | } |
| 2743 | |
| 2744 | static int maps_isTileHeavyAquifer(lua_State* L) |
| 2745 | { |
| 2746 | auto pos = CheckCoordXYZ(L, 1, true); |
| 2747 | lua_pushboolean(L, Maps::isTileHeavyAquifer(pos)); |
| 2748 | return 1; |
| 2749 | } |
| 2750 | |
| 2751 | static int maps_setTileAquifer(lua_State* L) |
| 2752 | { |
nothing calls this directly
no test coverage detected