You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cogs/music.py
+8-7
Original file line number
Diff line number
Diff line change
@@ -175,14 +175,11 @@ def __leave(self, context):
175
175
def__pause(self, context):
176
176
ifnotself.__vc.is_paused():
177
177
self.__vc.pause()
178
-
elifself.__vc.is_paused():
179
-
asyncio.run_coroutine_threadsafe(context.send(f'{self.bot.get_emoji(settings["emojis"]["wuuut"])} Лол, я на паузе, что ты ещё хочешь от меня?! Для этого есть `{settings.get("prefix")}resume`'), self.bot.loop)
180
-
178
+
181
179
def__resume(self, context):
182
180
ifnotself.__vc.is_playing():
183
181
self.__vc.resume()
184
-
elifself.__vc.is_playing():
185
-
asyncio.run_coroutine_threadsafe(context.send('🤪 Лол, я не на паузе, зачем ты ввёл эту команду?!'), self.bot.loop)
182
+
elifself.__vc.is_playing():asyncio.run_coroutine_threadsafe(context.send('🤪 Лол, я не на паузе, зачем ты ввёл эту команду?!'), self.bot.loop)
0 commit comments