This commit is contained in:
aozhiwei 2024-10-15 19:13:02 +08:00
parent ac48074909
commit 0dc104abdf

View File

@ -68,6 +68,20 @@ func (this *player) parseUserInfo(userInfo *common.UserInfo){
q5.DuckToSimple(userInfo.VipExp, &this.vipExp)
q5.DuckToSimple(userInfo.HasVipLucky, &this.hasVipLucky)
q5.DuckToSimple(userInfo.HasLuckySymbol, &this.hasLuckySymbol)
{
found := false
index := 0
for _, val := range this.battleItems {
index++
if val.ItemId == 900007 {
found = true
break
}
}
if found {
}
}
}
func (this *player) parseHeroInfo(heroInfo *common.HeroInfo){