This commit is contained in:
shoopea 2020-06-15 14:15:19 +02:00
parent db1846a10f
commit 84db313eee

View File

@ -237,6 +237,6 @@ func (p *PacketAdminServerClientError) Read(b []byte) {
bs := make([]byte, 4)
_, _ = r.Read(bs)
p.ClientID = binary.LittleEndian.Uint32(bs[0:])
c, _ = r.ReadByte()
c, _ := r.ReadByte()
p.ErrorID = uint8(c)
}