Skip to content

Commit

Permalink
fix(client): prevent patch check on reconnect
Browse files Browse the repository at this point in the history
  • Loading branch information
iholston committed Nov 4, 2023
1 parent 222c483 commit d16a6ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/bot/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def account_loop(self) -> None:
self.log.error("Bot Exiting")
return

def leveling_loop(self) -> None:
def leveling_loop(self) -> None:
"""Loop that runs the correct function based on the phase of the League Client, continuously starts games"""
self.connection.connect_lcu(verbose=False)
phase = self.get_phase()
Expand Down
2 changes: 1 addition & 1 deletion app/common/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
# RANDOM
MAX_CLIENT_ERRORS = 5
MAX_PHASE_ERRORS = 20
VERSION = 'v1.3.2'
VERSION = 'v2.0.0'


def update():
Expand Down

0 comments on commit d16a6ff

Please sign in to comment.