小补丁,优化头像框

This commit is contained in:
hahwu 2026-02-05 16:30:45 +08:00
parent b5a283b4b8
commit bec7fa7ea5

View File

@ -398,7 +398,8 @@ func (ad *GameLogic) GetResSimplePlayerByUid(Id int) *msg.ResPlayerSimple {
return nil
}
}
// TODO 2026.2.5 补丁 清除头像数据
player.Avatar = 0
return &msg.ResPlayerSimple{
Uid: int64(player.Uid),
Name: player.Name,
@ -431,6 +432,8 @@ func (ad *GameLogic) GetResFriendPlayerByUid(Id int) *msg.ResFriendPlayerSimple
return nil
}
}
// TODO 2026.2.5 补丁 清除头像数据
player.Avatar = 0
return &msg.ResFriendPlayerSimple{
Uid: int64(player.Uid),
Name: player.Name,