diff --git a/cogs/core.py b/cogs/core.py index 05956cf..4ab0cbc 100644 --- a/cogs/core.py +++ b/cogs/core.py @@ -65,7 +65,7 @@ class Core: @checks.customPermsOrRole(send_messages=True) async def uptime(self): """Provides a printout of the current bot's uptime""" - await self.bot.say("Uptime = ```{}```".format(self.get_bot_uptime())) + await self.bot.say("Uptime: ```{}```".format(self.get_bot_uptime())) @commands.command() @checks.customPermsOrRole(send_messages=True) diff --git a/cogs/playlist.py b/cogs/playlist.py index 1a1ae12..66310ef 100644 --- a/cogs/playlist.py +++ b/cogs/playlist.py @@ -27,7 +27,7 @@ class VoiceState: self.voice = None self.bot = bot self.play_next_song = asyncio.Event() - self.songs = asyncio.Queue() + self.songs = asyncio.Queue(maxsize=10) self.skip_votes = set() # a set of user_ids that voted self.audio_player = self.bot.loop.create_task(self.audio_player_task()) self.opts = {