make examples on_ready consistent

This commit is contained in:
pikaninja
2021-04-09 15:05:33 -07:00
committed by GitHub
parent eb5356cc47
commit 1952060e1a
8 changed files with 12 additions and 20 deletions

View File

@ -128,7 +128,9 @@ bot = commands.Bot(command_prefix=commands.when_mentioned_or("!"),
@bot.event
async def on_ready():
print(f'Logged in as {bot.user} ({bot.user.id})')
print('Logged in as')
print(bot.user.name)
print(bot.user.id)
print('------')
bot.add_cog(Music(bot))