上传皮肤资源读取

This commit is contained in:
liwei1dao 2023-12-26 10:18:29 +08:00
parent d42d11d875
commit 63cb02003e

View File

@ -188,12 +188,12 @@ func (this *configureComp) GetPlayerOverview(id string, sex int32) (configure *c
)
key = fmt.Sprintf("%s%d", id, sex)
if configure, ok = this._pInforoverview[key]; !ok {
// key = fmt.Sprintf("%s%d", id, 0)
// if configure, ok = this._pInforoverview[key]; !ok {
err = comm.NewNotFoundConfErr("用户模块", game_playerinfor_overview, key)
this.module.Errorf("err:%v", err)
return
// }
key = fmt.Sprintf("%s%d", id, 0)
if configure, ok = this._pInforoverview[key]; !ok {
err = comm.NewNotFoundConfErr("用户模块", game_playerinfor_overview, key)
this.module.Errorf("err:%v", err)
return
}
}
return
}