Skip to content

Commit

Permalink
packet/pool: Fix usage of incorrect packet ID constant (Sandertv#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
HashimTheArab authored Dec 15, 2024
1 parent 25a53b8 commit 09b06ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minecraft/protocol/packet/pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ func init() {
IDLecternUpdate: func() Packet { return &LecternUpdate{} },
IDClientCacheStatus: func() Packet { return &ClientCacheStatus{} },
IDMapCreateLockedCopy: func() Packet { return &MapCreateLockedCopy{} },
IDStructureTemplateDataExportRequest: func() Packet { return &StructureTemplateDataRequest{} },
IDStructureTemplateDataRequest: func() Packet { return &StructureTemplateDataRequest{} },
IDStructureTemplateDataResponse: func() Packet { return &StructureTemplateDataResponse{} },
IDClientCacheBlobStatus: func() Packet { return &ClientCacheBlobStatus{} },
IDEmote: func() Packet { return &Emote{} },
Expand Down

0 comments on commit 09b06ae

Please sign in to comment.