Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
revert decoding (220fb7d)
Browse files Browse the repository at this point in the history
  • Loading branch information
CMA2401PT committed Jun 10, 2022
1 parent 420f26d commit 6c446bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mirror/chunk/decode.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func NEMCNetworkDecode(data []byte, count int) (c *Chunk, nbtBlocks []map[string
for i := 0; i < count; i++ {
index := uint8(i)
// decodeSubChunk(buf, c, &index, NetworkEncoding)
c.sub[index+4], err = decodeSubChunkNEMC(buf, c, &index, encoder)
c.sub[index+4], err = decodeSubChunk(buf, c, &index, encoder)
if err != nil {
return nil, nil, err
}
Expand Down

0 comments on commit 6c446bc

Please sign in to comment.