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

Function maps_getBiomeType

library/LuaApi.cpp:2730–2735  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2728}
2729
2730static 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
2737static int maps_isTileAquifer(lua_State* L)
2738{

Callers

nothing calls this directly

Calls 3

CheckCoordXYFunction · 0.85
lua_pushintegerFunction · 0.85
getBiomeTypeFunction · 0.85

Tested by

no test coverage detected