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

Function maps_isTileAquifer

library/LuaApi.cpp:2737–2742  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2735}
2736
2737static int maps_isTileAquifer(lua_State* L)
2738{
2739 auto pos = CheckCoordXYZ(L, 1, true);
2740 lua_pushboolean(L, Maps::isTileAquifer(pos));
2741 return 1;
2742}
2743
2744static int maps_isTileHeavyAquifer(lua_State* L)
2745{

Callers

nothing calls this directly

Calls 3

CheckCoordXYZFunction · 0.85
lua_pushbooleanFunction · 0.85
isTileAquiferFunction · 0.85

Tested by

no test coverage detected