MCPcopy Create free account
hub / github.com/DFHack/dfhack / isTileAquifer

Function isTileAquifer

library/include/modules/Maps.h:397–397  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

395
396DFHACK_EXPORT bool isTileAquifer(int32_t x, int32_t y, int32_t z);
397inline bool isTileAquifer(df::coord pos) { return isTileAquifer(pos.x, pos.y, pos.z); }
398DFHACK_EXPORT bool isTileHeavyAquifer(int32_t x, int32_t y, int32_t z);
399inline bool isTileHeavyAquifer(df::coord pos) { return isTileHeavyAquifer(pos.x, pos.y, pos.z); }
400DFHACK_EXPORT bool setTileAquifer(int32_t x, int32_t y, int32_t z, bool heavy = false);

Callers 6

maps_isTileAquiferFunction · 0.85
removeTileAquiferMethod · 0.85
aquifer_listFunction · 0.85
aquifer_drainFunction · 0.85
aquifer_convertFunction · 0.85
aquifer_addFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected