Updated to v2.6

Temporary fix for Python 3.10 RPC issue. (https://github.com/profitrollgame/AutoZoom/issues/1)
This commit is contained in:
Profitroll 2022-02-01 17:32:46 +02:00
parent fe0a1a5202
commit 504b748789
1 changed files with 7 additions and 1 deletions

8
rpc.py
View File

@ -13,7 +13,13 @@ from pypresence import Presence
client_id = '800049969960058882'
RPC = Presence(client_id,pipe=0)
try:
RPC = Presence(client_id,pipe=0)
except Exception as exp:
appendLog(f'Discord RPC failed to initialize status due to {exp}')
if getConfig("debug"):
print(f'{RESET}Модуль {BRED}Discord RPC {RESET}не смог подключиться.\nВозможно, ваш {CYAN}Discord {RESET}не открыт.\nОшибка: {BRED}{exp}{RESET}')
time.sleep(1)
connected = False