名将擂台:排行榜

This commit is contained in:
luying
2022-07-16 14:53:28 +08:00
parent 8297742afd
commit 0fbc8bd7d8
6 changed files with 46 additions and 6 deletions

View File

@@ -309,6 +309,7 @@ export enum RANK_TYPE {
MAIN = 7, // 主线
MAIN_ELITE = 8, // 精英
GUILD_LV = 9, // 军团按等级排序
LADDER = 10, // 名将擂台
GUILD_ACTIVE = 11, // 军团活跃度排序
HERO = 12, // 武将排行
GUILD_FUND = 13, // 军团积分排行,限时类型的排行榜,仅计算期限内增加的值
@@ -341,6 +342,8 @@ export function getRedisKeyByRankType(rankType: RANK_TYPE, isTimelimit = false)
return REDIS_KEY.HERO_RANK;
case RANK_TYPE.GUILD_FUND: // 军团积分排行,限时类型的排行榜,仅计算期限内增加的值
return REDIS_KEY.GUILD_FUND;
case RANK_TYPE.LADDER: // 军团积分排行,限时类型的排行榜,仅计算期限内增加的值
return REDIS_KEY.LADDER;
}
}