diff --git a/src/ps/commands/games/other.tsx b/src/ps/commands/games/other.tsx index 2185cb1..c5b305c 100644 --- a/src/ps/commands/games/other.tsx +++ b/src/ps/commands/games/other.tsx @@ -239,7 +239,7 @@ export const command: PSCommand[] = [ if (!IS_ENABLED.DB) throw new ChatError($T('DISABLED.DB')); const target = toId(arg) || message.author.id; const allEntries = await getScrabbleDex(); - const results = allEntries!.filter(entry => entry.by === (target === 'yoshman8' ? 'audiino' : target)); + const results = allEntries!.filter(entry => entry.by === target); const grouped = mapValues( results.map(res => res.pokemonName.toUpperCase()).groupBy(mon => toId(mon).length), mons => mons?.unique().sort()