Skip to content

Commit

Permalink
userdataRemapping read
Browse files Browse the repository at this point in the history
  • Loading branch information
Lonegwadiwaitor committed Jul 1, 2024
1 parent 1b0eb7b commit 295d101
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Source.lua
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,16 @@ local function luau_deserialize(bytecode, luau_settings)
}
end

_ = readVarInt() -- TODO: figure out wtf this is
-- userdataRemapping (not used in VM, left unused)
if typesVersion == 3 then
local index = readByte()

while index ~= 0 do
readString()

index = readByte()
end
end

local protoCount = readVarInt()
local protoList = table_create(protoCount)
Expand Down

0 comments on commit 295d101

Please sign in to comment.