We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b66d2d1 commit 1067898Copy full SHA for 1067898
bot.py
@@ -92,11 +92,10 @@ async def send_group_help(self, group):
92
# If you want to make regular command help look different, then override it
93
send_command_help = send_group_help
94
95
-
+load_dotenv()
96
bot = helpers.Bot(command_prefix=prefix, description='Coding Bot v4',
97
case_insensitive=True, embed_color=discord.Color.blurple(),
98
- intents=discord.Intents.all(), help_command=CustomHelp())
99
-load_dotenv()
+ intents=discord.Intents.all(), help_command=CustomHelp(), proxy=os.getenv("BOT_PROXY"))
100
if len(sys.argv) > 2:
101
bot.token = sys.argv[2]
102
else:
0 commit comments