Skip to content

Commit

Permalink
chore: fix unreasonable limitation
Browse files Browse the repository at this point in the history
  • Loading branch information
cyperdark committed Oct 29, 2024
1 parent 3c7dbdd commit 82884c0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/tosu/src/utils/osuMods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,7 @@ export const calculateMods = (
);

const settingsSpeedChange = (ModsLazer as any).find(
(r) =>
r.acronym === 'DT' && typeof r.settings?.speed_change === 'number'
(r) => typeof r.settings?.speed_change === 'number'
)?.settings?.speed_change;

return {
Expand Down

0 comments on commit 82884c0

Please sign in to comment.