Merge branch 'sdk' into online

This commit is contained in:
hahwu 2026-02-05 16:50:38 +08:00
commit 6c549fd7f0
2 changed files with 3 additions and 1 deletions

View File

@ -374,6 +374,8 @@ func (ad *GameLogic) GetSimplePlayerByUid(Id int) *PlayerSimpleData {
return nil
}
}
// TODO 2026.2.5 补丁 清除头像数据
player.Avatar = 0
return player
}

View File

@ -372,7 +372,7 @@ func PlayerMsgHandler(data *msg.Msg) (interface{}, error) {
if p == nil || p.stop {
return nil, nil
}
p.Send(data.Clone())
go p.Send(data.Clone())
// 处理完后发送消费消息
if data.HandleType == msg.HANDLE_MOD_PLAYER_MSG {
data.HandleType = msg.HANDLE_MOD_COMSUME_MSG