Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Mayerch1/RemindmeBot
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayerch1 committed Nov 19, 2023
2 parents acf7561 + 57e6be6 commit 2b1b826
Show file tree
Hide file tree
Showing 3 changed files with 71,678 additions and 5 deletions.
11 changes: 9 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,24 @@
"version": "0.2.0",
"configurations": [
{
"name": "Python: Aktuelle Datei",
"name": "Python: Bot",
"type": "python",
"request": "launch",
"program": "Bot/remindmeBot.py",
"console": "integratedTerminal"
},
{
"name": "Python: Test File",
"type": "python",
"request": "launch",
"program": "testFile.py",
"console": "integratedTerminal"
},
{
"name": "Python: Unit Tests",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}\\BotTest.py",
"program": "BotTest.py",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}"
}
Expand Down
4 changes: 1 addition & 3 deletions Bot/remindmeBot.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
#intents.reactions = True
#intents.messages = True

bot: discord.AutoShardedBot = discord.AutoShardedBot(intents=intents)
bot: discord.AutoShardedBot = discord.AutoShardedBot(intents=intents, debug_guilds=[140150091607441408])

SYNTAX_HELP_PAGE = \
'basic example:\n'\
Expand Down Expand Up @@ -224,8 +224,6 @@ def is_round_number(x):
eb.set_image(url='https://media.giphy.com/media/kyLYXonQYYfwYDIeZl/giphy.gif')
await guild.system_channel.send(embed=eb)



# #############
# # Commands
# ############
Expand Down
Loading

0 comments on commit 2b1b826

Please sign in to comment.