mein Bier brennt
This commit is contained in:
parent
8db08e8e16
commit
343024f523
1 changed files with 7 additions and 0 deletions
7
bot.py
7
bot.py
|
@ -73,6 +73,13 @@ async def on_command_error(ctx, error):
|
||||||
async def on_ready():
|
async def on_ready():
|
||||||
print("Bot ready on Version %s..." % discord.__version__)
|
print("Bot ready on Version %s..." % discord.__version__)
|
||||||
|
|
||||||
|
@bot.event
|
||||||
|
async def on_message(message):
|
||||||
|
if message.author.id == 274197471515639808:
|
||||||
|
await message.add_reaction(bot.get_emoji(844264772110909501))
|
||||||
|
if message.author.id == 252179888969089024:
|
||||||
|
await message.add_reaction(bot.get_emoji(844264772110909501))
|
||||||
|
|
||||||
class Confirm(discord.ui.View):
|
class Confirm(discord.ui.View):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
Loading…
Reference in a new issue