This commit is contained in:
aozhiwei 2020-09-24 15:46:11 +08:00
parent 9babf4c256
commit 3f6b4322c5

View File

@ -16,6 +16,7 @@
#include "playermgr.h" #include "playermgr.h"
#include "app.h" #include "app.h"
#include "typeconvert.h" #include "typeconvert.h"
#include "handlermgr.h"
#include "framework/cpp/httpclientpool.h" #include "framework/cpp/httpclientpool.h"
@ -29,7 +30,12 @@ public:
void Execute(Guild* guild) void Execute(Guild* guild)
{ {
f8::MsgHdr hdr;
f8::NetMsgHandler* handler = f8::GetNetMsgHandler(&HandlerMgr::Instance()->guild_msghandler,
forward_msg.msgid());
if (handler && handler->handlerid == HID_Guild) {
ProcessNetMsg(handler, guild, hdr);
}
} }
void OnError() void OnError()