remove redundant fn call (shoutout to nnullcolumn for spotting this)

This commit is contained in:
kurokuukyo 2026-04-20 21:01:14 -04:00
parent a062172a9b
commit eeb194cff9

View file

@ -3348,7 +3348,7 @@ local function world_new(DEBUG: boolean?)
if nth == end_count then
return nil
end
local target = dense_array[sparse_array[ECS_ID(ECS_PAIR_SECOND(archetype_types[nth]))].dense]
local target = dense_array[sparse_array[ECS_PAIR_SECOND(archetype_types[nth])].dense]
nth += 1
return target
end