forked from rDrama/rDrama
1
0
Fork 0

make limit message accurate

master
Aevann 2023-11-16 15:10:10 +02:00
parent 8a44abe119
commit 0e1cd701a2
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ def media_ratelimit(v):
limit = 300 if v.patron else 100
if count > limit and v.admin_level < PERMS['USE_ADMIGGER_THREADS']:
print(STARS, flush=True)
print(f'@{v.username} hit the 100 file daily limit!')
print(f'@{v.username} hit the {limit} file daily limit!')
print(STARS, flush=True)
abort(500)