just last line in pybot-f.py and to have all changes on the gitea :)
This commit is contained in:
parent
d3292efa09
commit
b8c56195c0
2 changed files with 4 additions and 5 deletions
|
@ -18,20 +18,17 @@ logger.addHandler(handler)
|
|||
# The bots' description
|
||||
description = '''Testing this bot stuff :)'''
|
||||
|
||||
|
||||
# Intents
|
||||
intents = discord.Intents.default()
|
||||
intents.members = True
|
||||
intents.message_content = True
|
||||
|
||||
|
||||
# Config loading
|
||||
config = configparser.ConfigParser()
|
||||
config.read('bot.ini')
|
||||
|
||||
bottoken = config['General']['bottoken']
|
||||
|
||||
|
||||
# Setting up commands.Bot
|
||||
bot = commands.Bot(command_prefix='.', description=description, intents=intents)
|
||||
|
||||
|
@ -51,7 +48,8 @@ async def repeat(ctx, times: int, content='repeating...'):
|
|||
|
||||
@bot.command()
|
||||
@commands.is_owner()
|
||||
async def sync(ctx: commands.Context, guilds: commands.Greedy[discord.Object], spec: typing.Optional[typing.Literal["~", "*"]] = None) -> None:
|
||||
async def sync(ctx: commands.Context, guilds: commands.Greedy[discord.Object],
|
||||
spec: typing.Optional[typing.Literal["~", "*"]] = None) -> None:
|
||||
if not guilds:
|
||||
if spec == "~":
|
||||
fmt = await ctx.bot.tree.sync(guild=ctx.guild)
|
||||
|
@ -96,4 +94,4 @@ async def main():
|
|||
await bot.start(bottoken)
|
||||
|
||||
|
||||
asyncio.run(main())
|
||||
asyncio.run(main())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue