building_lib/get_groups.lua
BuckarooBanzay 932ce0f1a2 init
2022-10-19 20:54:27 +02:00

9 lines
228 B
Lua

function building_lib.get_groups(mapblock_pos)
local building_def = building_lib.get_building_at_pos(mapblock_pos)
if not building_def then
return {}
else
return building_def.groups or {}
end
end