From bf9931e042a169eb06f11af51c9ee4153b0f052f Mon Sep 17 00:00:00 2001 From: adevopg Date: Fri, 17 Jul 2026 07:59:06 +0000 Subject: [PATCH] =?UTF-8?q?Foro:=20usar=20el=20personaje=20de=20m=C3=A1s?= =?UTF-8?q?=20nivel=20de=20la=20cuenta=20(en=20vez=20de=20aleatorio)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 --- web-next/lib/forum.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-next/lib/forum.ts b/web-next/lib/forum.ts index 3ef454c..04ce414 100644 --- a/web-next/lib/forum.ts +++ b/web-next/lib/forum.ts @@ -400,7 +400,7 @@ export async function resolvePosters(ids: number[]): Promise() try { const [chars] = await db(DB.characters).query( @@ -414,7 +414,7 @@ export async function resolvePosters(ids: number[]): Promise (Number(cur.level) > Number(best.level) ? cur : best), list[0]) charByAccount.set(acc, { guid: Number(c.guid), name: String(c.name), race: Number(c.race), gender: Number(c.gender), class: Number(c.class), level: Number(c.level),