diff --git a/Source.lua b/Source.lua index 8594207..c30aa72 100644 --- a/Source.lua +++ b/Source.lua @@ -522,7 +522,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)