1
Some checks failed
ci/woodpecker/push/my-first-workflow Pipeline failed

This commit is contained in:
xinian
2026-02-23 04:01:57 +08:00
committed by cnb
parent a5e378073c
commit 029c2b8c6f
2 changed files with 4 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ package player
import (
"blazing/common/data"
"blazing/common/data/xmlres"
"blazing/common/socket/errorcode"
"blazing/cool"
"blazing/logic/service/common"
@@ -45,6 +46,7 @@ func (o *OgrePetInfo) FixSHiny() {
if co != nil && len(o.ShinyInfo) == 0 {
o.ShinyInfo = append(o.ShinyInfo, *co)
o.Item = append(o.Item, 400687+int64(xmlres.PetMAP[int(o.ID)].Type))
}
}
@@ -57,6 +59,7 @@ func (o *OgrePetInfo) RandomByWeightShiny() {
if co != nil && len(o.ShinyInfo) == 0 {
o.ShinyInfo = append(o.ShinyInfo, *co)
o.Item = append(o.Item, 400687+int64(xmlres.PetMAP[int(o.ID)].Type))
}
}