Skip to content

Commit

Permalink
Fix variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
Ukendio committed Jul 30, 2024
1 parent e9d2154 commit d5baf52
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/init.luau
Original file line number Diff line number Diff line change
Expand Up @@ -984,13 +984,13 @@ do

va[row], vb[row], vc[row] = fn(va[row], vb[row], vc[row])
elseif queryLength == 4 then
local a = columns[tr[a]]
local b = columns[tr[b]]
local c = columns[tr[c]]
local d = columns[tr[d]]
local va = columns[tr[a]]
local vb = columns[tr[b]]
local vc = columns[tr[c]]
local vd = columns[tr[d]]

a[row], b[row], c[row], d[row] = fn(
a[row], b[row], c[row], d[row])
va[row], vb[row], vc[row], vd[row] = fn(
va[row], vb[row], vc[row], vd[row])
else
local field = archetype.records
for j, id in ids do
Expand Down

0 comments on commit d5baf52

Please sign in to comment.