Update Index.luau

Fixed omission of serialised id
This commit is contained in:
xArshy 2024-03-31 00:29:59 +04:00 committed by GitHub
parent 42f2c6b35e
commit 1380acd6fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,7 +19,7 @@ function Client.new(Identifier: string)
local self = setmetatable({}, Client)
self._buffer = Buffer.new()
self._buffer:wu8()
self._buffer:wu8(id)
self.id = Buffer.convert(self._buffer:build())
self.fn = {}
self.IsConnected = false