Skip to content

Commit

Permalink
new: neautral items event
Browse files Browse the repository at this point in the history
  • Loading branch information
mgatespot committed Feb 6, 2025
1 parent 8a74c45 commit 587d81a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/components/Dashboard/Features/ChatterCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,17 @@ export const chatterInfo = {
</span>
),
},
neutralItems: {
tooltip:
'Depending on whether you\'re playing turbo or normal, neutral items will be available at different times.',
category: CATEGORIES.Event,
message: (
<span>
Tier 5 neutral items are now available! Time to check the jungle
PogChamp
</span>
),
},
}

const groupedChatterInfo = Object.entries(chatterInfo).reduce(
Expand Down
3 changes: 3 additions & 0 deletions src/lib/defaultSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ export const defaultSettings = {
commandsReady: {
enabled: true,
},
neutralItems: {
enabled: false,
},
},
commandAPM: true,
commandAvg: true,
Expand Down
1 change: 1 addition & 0 deletions src/lib/validations/setting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ const settingsSchema = {
noTp: z.object({ enabled: z.boolean() }),
matchOutcome: z.object({ enabled: z.boolean() }),
commandsReady: z.object({ enabled: z.boolean() }),
neutralItems: z.object({ enabled: z.boolean() }),
}),
commandAPM: z.boolean(),
commandAvg: z.boolean(),
Expand Down

1 comment on commit 587d81a

@vercel
Copy link

@vercel vercel bot commented on 587d81a Feb 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.