Merge branch 'update-pycord' into 'master'
bump pycord See merge request aaron-riedel/shbot!23
This commit is contained in:
commit
f7cc76d280
3 changed files with 7 additions and 6 deletions
6
bot.py
6
bot.py
|
@ -100,7 +100,7 @@ class Confirm(discord.ui.View):
|
|||
self.stop()
|
||||
|
||||
@bot.slash_command(guild_ids=[261575556708040705])
|
||||
@permissions.has_role(member_role)
|
||||
@commands.has_role(member_role)
|
||||
async def roll(ctx,
|
||||
dice: Option(str, "Würfel den/die du werfen willst. z.B. W20, 3d6", default="W20"),
|
||||
):
|
||||
|
@ -133,7 +133,7 @@ async def roll(ctx,
|
|||
await ctx.response.send_message(embed=em)
|
||||
|
||||
@bot.slash_command(guild_ids=[261575556708040705])
|
||||
@permissions.has_role(gm_role)
|
||||
@commands.has_role(gm_role)
|
||||
async def gmroll(ctx,
|
||||
dice: Option(str, "Würfel den/die du werfen willst. z.B. W20, 3d6", default="W20"),
|
||||
):
|
||||
|
@ -181,7 +181,7 @@ class MyModal(Modal):
|
|||
|
||||
|
||||
@bot.message_command(name="Emoji Text", guild_ids=[261575556708040705])
|
||||
@permissions.has_role(member_role)
|
||||
@commands.has_role(member_role)
|
||||
async def emoji_text(ctx, message: discord.Message):
|
||||
modal = MyModal()
|
||||
modal.title = "Emoji Bot"
|
||||
|
|
|
@ -4,6 +4,7 @@ import time
|
|||
import datetime
|
||||
import random
|
||||
import os
|
||||
import sys
|
||||
from os import system
|
||||
from os import environ
|
||||
from discord.ext import commands
|
||||
|
@ -22,7 +23,7 @@ bot = commands.Bot(intents=intents, command_prefix=prefix)
|
|||
@bot.event
|
||||
async def on_connect():
|
||||
print("Bot ready on Version %s..." % discord.__version__)
|
||||
await bot.sync_commands(commands=[], check_guilds=[261575556708040705])
|
||||
print("Press Ctl+c to exit now")
|
||||
await bot.sync_commands(commands=[], guild_ids=[261575556708040705])
|
||||
os._exit(0)
|
||||
|
||||
bot.run(token)
|
|
@ -1 +1 @@
|
|||
py-cord==2.0.0b7
|
||||
py-cord==2.0.0rc1
|
||||
|
|
Loading…
Reference in a new issue