版署服 觉醒技能校验失败bug

This commit is contained in:
meixiongfeng 2023-07-20 10:14:04 +08:00
parent 4ab5a1575b
commit 83587b4e33

View File

@ -205,7 +205,7 @@ func (this *ModelHero) resetJuexingProperty(hero *pb.DBHero) {
} }
key := awakenData.Phasebonus[0] key := awakenData.Phasebonus[0]
_, err := strconv.Atoi(awakenData.Phasebonus[0]) // 950 _, err := strconv.Atoi(awakenData.Phasebonus[0]) // 950
if err != nil { if err == nil {
continue continue
} }
value, _ := strconv.Atoi(awakenData.Phasebonus[1]) value, _ := strconv.Atoi(awakenData.Phasebonus[1])