Skip to content

Commit

Permalink
0.67.2 (Noctem#320)
Browse files Browse the repository at this point in the history
Update version
  • Loading branch information
ZeChrales authored and Noctem committed Jul 8, 2017
1 parent 4f33244 commit c0c3f40
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions monocle/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ async def login(self, reauth=False):
raise err

self.error_code = '°'
version = 6701
version = 6702
async with self.sim_semaphore:
self.error_code = 'APP SIMULATION'
if conf.APP_SIMULATION:
Expand Down Expand Up @@ -596,9 +596,9 @@ async def call(self, request, chain=True, stamp=True, buddy=True, settings=False
else:
if (not dl_hash
and conf.FORCED_KILL
and dl_settings.settings.minimum_client_version != '0.67.1'):
and dl_settings.settings.minimum_client_version != '0.67.2'):
forced_version = StrictVersion(dl_settings.settings.minimum_client_version)
if forced_version > StrictVersion('0.67.1'):
if forced_version > StrictVersion('0.67.2'):
err = '{} is being forced, exiting.'.format(forced_version)
self.log.error(err)
print(err)
Expand Down
2 changes: 1 addition & 1 deletion solve_captchas.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class AccountManager(BaseManager): pass

await sleep(.6)

request.download_remote_config_version(platform=1, app_version=6701)
request.download_remote_config_version(platform=1, app_version=6702)
request.check_challenge()
request.get_hatched_eggs()
request.get_inventory(last_timestamp_ms=account.get('inventory_timestamp', 0))
Expand Down

0 comments on commit c0c3f40

Please sign in to comment.