1
0
Fork 0
mirror of synced 2024-05-05 13:12:34 +12:00

Remove music

This commit is contained in:
phxntxm 2018-04-24 17:53:43 -05:00
parent e24c8e3a93
commit d7b9e04742

View file

@ -231,7 +231,6 @@ class Miscallaneous:
ttt = self.bot.get_cog('TicTacToe')
bj = self.bot.get_cog('Blackjack')
interaction = self.bot.get_cog('Interaction')
music = self.bot.get_cog('Music')
if hm:
value.append("Hangman games: {}".format(len(hm.games)))
@ -244,9 +243,6 @@ class Miscallaneous:
for battles in self.bot.get_cog('Interaction').battles.values():
count_battles += len(battles)
value.append("Battles running: {}".format(len(bj.games)))
if music:
songs = len([x for x in music.voice_states.values() if x.playing])
value.append("Total songs playing: {}".format(songs))
embed.add_field(name=name, value="\n".join(value), inline=False)
await ctx.send(embed=embed)