Skip to content

Commit

Permalink
Remove redundant checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Ukendio committed Oct 5, 2024
1 parent c288a5f commit 39e7c23
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/init.luau
Original file line number Diff line number Diff line change
Expand Up @@ -1166,9 +1166,6 @@ local function query_iter_init(query)

entities = archetype.entities
i = #entities
if i == 0 then
continue
end
entityId = entities[i]
columns = archetype.columns
local records = archetype.records
Expand All @@ -1192,9 +1189,6 @@ local function query_iter_init(query)

entities = archetype.entities
i = #entities
if i == 0 then
continue
end
entityId = entities[i]
columns = archetype.columns
local records = archetype.records
Expand All @@ -1219,9 +1213,6 @@ local function query_iter_init(query)

entities = archetype.entities
i = #entities
if i == 0 then
continue
end
entityId = entities[i]
columns = archetype.columns
local records = archetype.records
Expand All @@ -1247,9 +1238,6 @@ local function query_iter_init(query)

entities = archetype.entities
i = #entities
if i == 0 then
continue
end
entityId = entities[i]
columns = archetype.columns
local records = archetype.records
Expand Down Expand Up @@ -1277,9 +1265,6 @@ local function query_iter_init(query)

entities = archetype.entities
i = #entities
if i == 0 then
continue
end
entityId = entities[i]
columns = archetype.columns
local records = archetype.records
Expand Down

0 comments on commit 39e7c23

Please sign in to comment.