From fbc547ca9799f4579d08f85ce93854dfc0767df5 Mon Sep 17 00:00:00 2001 From: luying Date: Mon, 7 Aug 2023 13:40:35 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix(gvg):=20=E4=B8=AA=E4=BA=BA?= =?UTF-8?q?=E5=87=BB=E6=9D=80=E6=8E=92=E8=A1=8C=E6=A6=9C=E7=AE=97=E5=88=B0?= =?UTF-8?q?=E4=B8=AA=E4=BA=BA=E9=A9=BB=E5=AE=88=E6=8E=92=E8=A1=8C=E6=A6=9C?= =?UTF-8?q?=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/app/services/gvg/gvgBattleService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }