Skip to content

Commit

Permalink
Fix typo regarding index arg
Browse files Browse the repository at this point in the history
  • Loading branch information
ccuser44 authored Nov 12, 2024
1 parent 866bd57 commit 722af32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MainModule/Server/Core/Remote.luau
Original file line number Diff line number Diff line change
Expand Up @@ -1413,7 +1413,7 @@ return function(Vargs, GetEnv)
local keyLen = #key

for i = 0, #str - 1 do
writeu8(rawStr, bxor(readu8(rawStr, i), readu8(rawKey, i % keyLen)))
writeu8(rawStr, i, bxor(readu8(rawStr, i), readu8(rawKey, i % keyLen)))
end

cache[key] = keyCache
Expand Down

0 comments on commit 722af32

Please # to comment.