Skip to content

Commit

Permalink
forgot some
Browse files Browse the repository at this point in the history
  • Loading branch information
Sitois authored Apr 16, 2024
1 parent 8395715 commit adebedd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,12 @@ async def on_ready():
await bot.add_cog(UtilsCommands(bot))
print(Fore.GREEN + "[+]", Fore.LIGHTGREEN_EX + 'UtilsCommands:', fr_en.cog_success[config_selfbot.lang], Style.RESET_ALL)
except Exception as e:
print(Fore.RED + "[-]", Fore.LIGHTRED_EX + 'UtilsCommands:', fr_en.cog_fail[config_selfbot.lang] + e, Style.RESET_ALL)
print(Fore.RED + "[-]", Fore.LIGHTRED_EX + 'UtilsCommands:', fr_en.cog_fail[config_selfbot.lang], e, Style.RESET_ALL)
try:
await bot.add_cog(VoiceCommands(bot))
print(Fore.GREEN + "[+]", Fore.LIGHTGREEN_EX + 'VoiceCommands:', fr_en.cog_success[config_selfbot.lang], Style.RESET_ALL)
except Exception as e:
print(Fore.RED + "[-]", Fore.LIGHTRED_EX + 'VoiceCommands:', fr_en.cog_fail[config_selfbot.lang] + e, Style.RESET_ALL)
print(Fore.RED + "[-]", Fore.LIGHTRED_EX + 'VoiceCommands:', fr_en.cog_fail[config_selfbot.lang], e, Style.RESET_ALL)
try:
await bot.add_cog(ConfigCommands(bot))
print(Fore.GREEN + "[+]", Fore.LIGHTGREEN_EX + 'ConfigCommands:', fr_en.cog_success[config_selfbot.lang], Style.RESET_ALL)
Expand Down Expand Up @@ -199,6 +199,7 @@ async def stop(ctx):
await bot.close()
exit()


#############
#############

Expand Down

0 comments on commit adebedd

Please sign in to comment.