nicer activity message
All checks were successful
Build and Push Docker Image / build (push) Successful in 12s

done away with the debugging **{}** message
This commit is contained in:
Corban-Lee Jones 2024-12-06 11:47:40 +00:00
parent 3bc52db5aa
commit fa1ce10b0f

View File

@ -36,7 +36,8 @@ class ActivityCog(commands.Cog):
return
players_count = int(re_match.group(1))
self.bot.activity = Game(name=f"**{players_count}**")
self.bot.activity = Game(name=f"with {players_count} survivors!")
log.debug("player count in activity updated to: %s", players_count)
async def setup(bot: commands.Bot):