Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
Fix Selecting Discord Module Without Api Key
Browse files Browse the repository at this point in the history
  • Loading branch information
Mickey758 committed Oct 8, 2022
1 parent d79add1 commit 58d0275
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def modules():
disabled = []
for module in modules_list:
if module in selected_modules and module.split(' ')[0] in ['discord']:
if not balance or 'Invalid' in balance:
if not Checker.api_key or not balance or 'Invalid' in balance:
selected_modules.remove(module)
disabled.append(module.split(' ')[0])
index = list(modules_list).index(module)+1
Expand Down
2 changes: 1 addition & 1 deletion modules/variables.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from threading import Lock
lock = Lock()
version = "1.0.2"
version = "1.0.2.1"
discord_name = "MickeyYe#9423"
class Checker:
bad = 0
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.2
1.0.2.1

0 comments on commit 58d0275

Please sign in to comment.