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

Function isTileHeavyAquifer

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

Source from the content-addressed store, hash-verified

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);
401inline bool setTileAquifer(df::coord pos, bool heavy = false) { return setTileAquifer(pos.x, pos.y, pos.z, heavy); }
402DFHACK_EXPORT int setAreaAquifer(df::coord pos1, df::coord pos2, bool heavy = false,

Callers 6

maps_isTileHeavyAquiferFunction · 0.85
setTileAquiferMethod · 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