This commit is contained in:
shoopea 2020-06-14 23:40:04 +02:00
parent f60f0b6c59
commit 8d5aec4114

View File

@ -1,6 +1,7 @@
package main
import (
"bufio"
"bytes"
"encoding/binary"
)
@ -103,7 +104,7 @@ func (p *PacketAdminServerWelcome) Read(b []byte) {
bs := make([]byte, 13)
_, _ = r.Read(bs)
p.MapSeed = binary.LittleEndian.Uint32(bs[0:])
p.MapLandscape = uint8(bs[4:1])
p.MapLandscape = uint8(bs[4:4])
p.MapStartDate = binary.LittleEndian.Uint32(bs[5:])
p.MapX = binary.LittleEndian.Uint16(bs[9:])
p.MapY = binary.LittleEndian.Uint16(bs[11:])