1
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful

This commit is contained in:
xinian
2026-02-11 01:13:34 +08:00
committed by cnb
parent eefdc6ef71
commit 4359743b7b

View File

@@ -216,7 +216,7 @@ func (pet *PetInfo) RandShiny() {
co := service.NewShinyService().RandShiny(pet.ID)
if co != nil {
pet.ShinyInfo = append(pet.ShinyInfo, *&co.Color)
pet.ShinyInfo = append(pet.ShinyInfo, co.Color)
}
//o.ShinyInfo[0].ColorMatrixFilter = GenerateRandomOffspringMatrix().Get()
//g.Dump(ttt.ShinyInfo)
@@ -226,7 +226,7 @@ func (pet *PetInfo) FixShiny() {
co := service.NewShinyService().FixShiny(pet.ID)
if co != nil {
pet.ShinyInfo = append(pet.ShinyInfo, *&co.Color)
pet.ShinyInfo = append(pet.ShinyInfo, co.Color)
}
//o.ShinyInfo[0].ColorMatrixFilter = GenerateRandomOffspringMatrix().Get()
//g.Dump(ttt.ShinyInfo)