diff options
author | Parker <contact@pkrm.dev> | 2024-11-29 01:36:06 -0600 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-11-29 01:36:06 -0600 |
commit | 4e8030eca4b1f4028268683ccfc7b481b1608dde (patch) | |
tree | d208e1c582733bd82993715b9cbc9266aca5390c /code/cogs/nowplaying.py | |
parent | e2916fb0aaf5ae7c6306feb7bc13405aabb29ae6 (diff) |
Largely embed wording changes + other small tweaks + combine pause commands
Diffstat (limited to 'code/cogs/nowplaying.py')
-rw-r--r-- | code/cogs/nowplaying.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/cogs/nowplaying.py b/code/cogs/nowplaying.py index 1f29c3c..71f0d75 100644 --- a/code/cogs/nowplaying.py +++ b/code/cogs/nowplaying.py @@ -15,7 +15,7 @@ class NowPlaying(commands.Cog): @app_commands.command() @app_commands.check(Music.create_player) async def np(self, interaction: discord.Interaction): - "Show what song is currently playing" + "See what song is currently playing" player = self.bot.lavalink.player_manager.get(interaction.guild.id) time_in = str(datetime.timedelta(milliseconds=player.position))[:-7] |