Skip to content

Commit

Permalink
Limit bot multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
oldnapalm committed May 24, 2024
1 parent 35ca434 commit 2217813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion standalone.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def load_bots():
multiplier = 1
with open(ENABLE_BOTS_FILE) as f:
try:
multiplier = int(f.readline().rstrip('\r\n'))
multiplier = min(int(f.readline().rstrip('\r\n')), 100)
except ValueError:
pass
i = 1
Expand Down

0 comments on commit 2217813

Please sign in to comment.