We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 986b269 commit 2e799c2Copy full SHA for 2e799c2
1 file changed
src/ps/commands/games/other.tsx
@@ -239,7 +239,7 @@ export const command: PSCommand[] = [
239
if (!IS_ENABLED.DB) throw new ChatError($T('DISABLED.DB'));
240
const target = toId(arg) || message.author.id;
241
const allEntries = await getScrabbleDex();
242
- const results = allEntries!.filter(entry => entry.by === target);
+ const results = allEntries!.filter(entry => entry.by === (target === 'yoshman8' ? 'audiino' : target));
243
const grouped = mapValues(
244
results.map(res => res.pokemonName.toUpperCase()).groupBy(mon => toId(mon).length),
245
mons => mons?.unique().sort()
0 commit comments