Compare commits

...

2 Commits

Author SHA1 Message Date
sk 0bff759477 Merge branch 'develop' into release 2024-08-10 01:05:44 +08:00
sk 95fcaa5977 vip升级检查皮肤红点 2024-08-10 01:05:28 +08:00
1 changed files with 5 additions and 1 deletions

View File

@ -3929,13 +3929,17 @@ func (this *Player) GetVIPLevel() int32 {
}
}
}
var b bool
if vip != this.VIP {
b = true
//玩家VIP升级
this.SCVIPInfo()
PetMgrSington.CheckSkinRed(this)
logger.Logger.Trace("VIP升级")
}
this.VIP = vip
if b {
PetMgrSington.CheckSkinRed(this)
}
return this.VIP
}