pikaninja
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
6 deletions
-
examples/basic_bot.py
-
examples/basic_voice.py
|
|
@ -16,9 +16,7 @@ bot = commands.Bot(command_prefix='?', description=description, intents=intents) |
|
|
|
|
|
|
|
@bot.event |
|
|
|
async def on_ready(): |
|
|
|
print('Logged in as') |
|
|
|
print(bot.user.name) |
|
|
|
print(bot.user.id) |
|
|
|
print(f'Logged in as {bot.user} (ID: {bot.user.id})') |
|
|
|
print('------') |
|
|
|
|
|
|
|
@bot.command() |
|
|
|
|
|
@ -128,9 +128,7 @@ bot = commands.Bot(command_prefix=commands.when_mentioned_or("!"), |
|
|
|
|
|
|
|
@bot.event |
|
|
|
async def on_ready(): |
|
|
|
print('Logged in as') |
|
|
|
print(bot.user.name) |
|
|
|
print(bot.user.id) |
|
|
|
print(f'Logged in as {bot.user} (ID: {bot.user.id})') |
|
|
|
print('------') |
|
|
|
|
|
|
|
bot.add_cog(Music(bot)) |
|
|
|