diff --git a/game-server/app/services/gvg/gvgBattleService.ts b/game-server/app/services/gvg/gvgBattleService.ts index c8d86867d..b4d150c48 100644 --- a/game-server/app/services/gvg/gvgBattleService.ts +++ b/game-server/app/services/gvg/gvgBattleService.ts @@ -457,7 +457,7 @@ export async function redisAddBattleScore(gvgTeam: GVGTeamType, incScore: number await r.setExpire(nextWeek); await r.setRankWithRoleInfo(roleId, incScore, Date.now(), null, true); - let r2 = new Rank(REDIS_KEY.GVG_BATTLE_USR_SETTLE_RANK_BY_CITY, { configId, groupKey, cityId }); + let r2 = new Rank(REDIS_KEY.GVG_BATTLE_USER_RANK_BY_CITY, { configId, groupKey, cityId }); await r2.setExpire(nextWeek); await r2.setRankWithRoleInfo(roleId, incScore, Date.now(), null, true); }