diff --git a/commands/music.py b/commands/music.py index 2fbc1ea..b192656 100644 --- a/commands/music.py +++ b/commands/music.py @@ -397,12 +397,13 @@ async def _skip(self, ctx: commands.Context): return await ctx.send('Not playing any music right now...') voter = ctx.message.author + if voter == ctx.voice_state.current.requester: await ctx.message.add_reaction('⏭') ctx.voice_state.skip() - elif voter == config.OWNER_ID: - await ctx.message.add_reaction('⏬') + elif voter.id == config.OWNER_ID: + await ctx.message.add_reaction('⬆️') await ctx.send('Master skip vote, skipping.') ctx.voice_state.skip() diff --git a/ex_config (change me to config.py).py b/ex_config (change me to config.py).py index 0ae91f8..5097d98 100644 --- a/ex_config (change me to config.py).py +++ b/ex_config (change me to config.py).py @@ -1,4 +1,4 @@ -AVA_VERSION = 'v0.9.0-beta' # Do not change this, it will help with troubleshooting later +AVA_VERSION = 'v0.9.1-beta' # Do not change this, it will help with troubleshooting later CONFIG_VERSION = 3 # Do not change this, it will help with troubleshooting later # Required Bot Configuration