Compare commits

..

1 commit

Author SHA1 Message Date
Clown
dd9e690518
Merge 96bed9bd7e into 4435d718a7 2025-03-01 19:55:22 -07:00

View file

@ -172,6 +172,9 @@ end
local function entity_index_try_get_any(entity_index: EntityIndex, entity: number): Record? local function entity_index_try_get_any(entity_index: EntityIndex, entity: number): Record?
local r = entity_index.sparse_array[ECS_ENTITY_T_LO(entity)] local r = entity_index.sparse_array[ECS_ENTITY_T_LO(entity)]
if not r then
return nil
end
if not r or r.dense == 0 then if not r or r.dense == 0 then
return nil return nil