战场:悔棋

This commit is contained in:
luying
2022-03-09 20:03:52 +08:00
parent f440ef2ebe
commit 0e10e3e6d3
4 changed files with 57 additions and 1 deletions

View File

@@ -202,4 +202,12 @@ export function getVipDungeonCnt(vipStartTime: number) {
count += VIP.VIP_DUNGEON_CONST_FREE_ADD;
}
return count
}
export function getVipRegretCnt(vipStartTime: number) {
let count = VIP.VIP_REGRET_CNT_WITHOUT_VIP;
if(vipStartTime > 0) {
count = VIP.VIP_REGRET_CNT_WITH_VIP;
}
return count;
}