CustomHead and Frame impl, with GetMainDataRsp fix

This commit is contained in:
rafi1212122
2023-06-07 10:21:58 +07:00
parent f95f370a48
commit cd2087f6cb
20 changed files with 324 additions and 16 deletions

View File

@@ -9,7 +9,8 @@ namespace PemukulPaku.GameServer.Handlers
public void Handle(Session session, Packet packet)
{
SendChatMsgNotify Data = packet.GetDecodedBody<SendChatMsgNotify>();
WorldChatroom.GetInstance().GetChatroom(session).OnSendChat(session, Data.ChatMsg);
if (Data.ChatMsg.Channel == ChatMsg.MsgChannel.World)
WorldChatroom.GetInstance().GetChatroom(session).OnSendChat(session, Data.ChatMsg);
}
}
}