vip升级检查皮肤红点

This commit is contained in:
sk 2024-08-10 01:05:28 +08:00
parent f0c42316f7
commit 95fcaa5977
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
}