diff --git a/modules/blazing/model/pet.go b/modules/blazing/model/pet.go index 330acea12..14b09d069 100644 --- a/modules/blazing/model/pet.go +++ b/modules/blazing/model/pet.go @@ -12,7 +12,6 @@ import ( "github.com/gogf/gf/v2/util/gconv" "github.com/gogf/gf/v2/util/grand" - "github.com/jinzhu/copier" "github.com/samber/lo" ) @@ -225,7 +224,8 @@ func (pet *PetInfo) RnadAN() { } if pet.HaveAN() { - copier.Copy(pet.EffectInfo[0], ret) + pet.EffectInfo[0] = *ret + //copier.Copy(pet.EffectInfo[0], ret) } else { pet.EffectInfo = append(pet.EffectInfo, *ret) }