Skip to content

Commit

Permalink
actually make max 1000 lol
Browse files Browse the repository at this point in the history
  • Loading branch information
BabyBoySnow committed Feb 17, 2024
1 parent 1d635ba commit 2ce9dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion musicbot/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -4711,7 +4711,7 @@ async def cmd_clean(

try:
float(search_range_str) # lazy check
search_range = min(int(search_range_str), 100)
search_range = min(int(search_range_str), 1000)
except ValueError:
return Response(
self.str.get(
Expand Down

0 comments on commit 2ce9dbc

Please sign in to comment.