Skip to content

Commit 2e799c2

Browse files
committed
chore: Balance update
1 parent 986b269 commit 2e799c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ps/commands/games/other.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export const command: PSCommand[] = [
239239
if (!IS_ENABLED.DB) throw new ChatError($T('DISABLED.DB'));
240240
const target = toId(arg) || message.author.id;
241241
const allEntries = await getScrabbleDex();
242-
const results = allEntries!.filter(entry => entry.by === target);
242+
const results = allEntries!.filter(entry => entry.by === (target === 'yoshman8' ? 'audiino' : target));
243243
const grouped = mapValues(
244244
results.map(res => res.pokemonName.toUpperCase()).groupBy(mon => toId(mon).length),
245245
mons => mons?.unique().sort()

0 commit comments

Comments
 (0)