diff --git a/game-server/app/services/rankService.ts b/game-server/app/services/rankService.ts index bbeda75d0..51183b995 100644 --- a/game-server/app/services/rankService.ts +++ b/game-server/app/services/rankService.ts @@ -757,7 +757,7 @@ export class Rank { let param: RoleRankInfo | GuildRankInfo; if (this.infoKey == REDIS_KEY.USER_INFO) { - if (nowSeconds() - userInfo.updatedAt > 2 * 30 * 24 * 60 * 60) { + if (this.key != REDIS_KEY.LADDER && nowSeconds() - userInfo.updatedAt > 2 * 30 * 24 * 60 * 60) { return null; } param = new RoleRankInfo(userInfo);