Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CrossyChainsaw committed Jun 3, 2024
1 parent 99e7a9c commit bce19dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
# Fill in with your own clan data!
discord_server_name = "YOUR_DISCORD_SERVER_NAME"
discord_server_id = 'YOUR_DISCORD_SERVER_ID' # Yes this has to be a string
clan_name = ["YOUR_CLAN_NAME"]
clan_name = ["YOUR_CLAN_NAME"] # for multiple clans -> clan_name = ["YOUR_CLAN_NAME, YOUR_CLAN_NAME_2"]
channel_1v1_id=0 # Replace with your 1v1 elo channel id
channel_2v2_id=0 # Replace with your 2v2 elo channel id
clan_id = ["YOUR_CLAN_ID"]
clan_id = ["YOUR_CLAN_ID"] # for multiple clans -> clan_id = ["YOUR_CLAN_ID, YOUR_CLAN_ID_2"]
clan_image = 'YOUR_CLAN_IMAGE_SOURCE_LINK'
discord_bot_token = "YOUR_BOT_TOKEN" # DON'T SHARE THIS TOKEN WITH ANYONE!!!!!!!!!!!!!!!!!!!!!!

Expand Down Expand Up @@ -62,4 +62,4 @@ async def clan_console_mix_2v2_elo_list_command(ctx):
async def clan_console_mix_1v1_and_2v2_elo_list_command(ctx):
await clan_console_mix_1v1_and_2v2_elo_list(YOUR_CLAN, bot)

bot.run(discord_bot_token)
bot.run(discord_bot_token)

0 comments on commit bce19dc

Please sign in to comment.