Skip to content

Commit

Permalink
fix : stat details
Browse files Browse the repository at this point in the history
  • Loading branch information
iqeq1945 committed Nov 29, 2024
1 parent f8ea10f commit 9300b5f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/wakgames/wakgames.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,13 @@ export class WakgamesService extends WakGames {

private readonly typeHandlers = new Map<string, (word: WordData) => string[]>(
[
['WOO', () => ['WOO-1']],
[
'WOO',
(word) => [
'WOO-1',
...(word.id === '신세계의신이되는거다' ? ['WOO-2'] : []),
],
],
['INE', (word) => ['INE-1', ...(word.id === '오야' ? ['INE-2'] : [])]],
[
'JINGBURGER',
Expand Down Expand Up @@ -164,7 +170,7 @@ export class WakgamesService extends WakGames {
[
'GOMEM',
(word) => [
...(word.meta?.tag.includes('고멤') ? ['GOM-1'] : []),
...(word.meta?.tag.includes('클래식') ? ['GOM-1'] : []),
...(word.meta?.tag.includes('아카데미') ? ['GOM-2'] : []),
],
],
Expand Down

0 comments on commit 9300b5f

Please sign in to comment.