mirror of
https://github.com/m1k1o/neko.git
synced 2025-05-15 18:17:42 +02:00
A huge amount more spelling corrections
This commit is contained in:
parent
addead5005
commit
b31036147d
18 changed files with 69 additions and 69 deletions
|
@ -84,13 +84,13 @@ func (h *MessageHandler) Message(id string, raw []byte) error {
|
|||
|
||||
// Chat Events
|
||||
case event.CHAT_MESSAGE:
|
||||
payload := &message.ChatRecieve{}
|
||||
payload := &message.ChatReceive{}
|
||||
return errors.Wrapf(
|
||||
utils.Unmarshal(payload, raw, func() error {
|
||||
return h.chat(id, session, payload)
|
||||
}), "%s failed", header.Event)
|
||||
case event.CHAT_EMOTE:
|
||||
payload := &message.EmoteRecieve{}
|
||||
payload := &message.EmoteReceive{}
|
||||
return errors.Wrapf(
|
||||
utils.Unmarshal(payload, raw, func() error {
|
||||
return h.chatEmote(id, session, payload)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue