Files
minego/pkg/protocol/packet/game/server/chat_ack.go
2025-08-27 20:28:44 +08:00

19 lines
354 B
Go

package server
import "git.konjactw.dev/falloutBot/go-mc/data/packetid"
//codec:gen
type ChatAck struct {
MessageCount int32 `mc:"VarInt"`
}
func (*ChatAck) PacketID() packetid.ServerboundPacketID {
return packetid.ServerboundChatAck
}
func init() {
registerPacket(packetid.ServerboundChatAck, func() ServerboundPacket {
return &ChatAck{}
})
}