Use "Listening to .help" instead of "Playing .help"
This commit is contained in:
parent
ef97d64002
commit
ac2c6f5070
1 changed files with 3 additions and 1 deletions
|
@ -97,7 +97,9 @@ async def on_ready():
|
||||||
data_files = [discord.File(fpath) for fpath in wanted_jsons]
|
data_files = [discord.File(fpath) for fpath in wanted_jsons]
|
||||||
await bot.botlog_channel.send(msg, files=data_files)
|
await bot.botlog_channel.send(msg, files=data_files)
|
||||||
|
|
||||||
await bot.change_presence(activity=discord.Game(name=game_name))
|
activity = discord.Activity(name=game_name, type=discord.ActivityType.listening)
|
||||||
|
|
||||||
|
await bot.change_presence(activity=activity)
|
||||||
|
|
||||||
|
|
||||||
@bot.event
|
@bot.event
|
||||||
|
|
Loading…
Reference in a new issue