mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Update queue.py
This commit is contained in:
parent
5446330d22
commit
55c6d61062
1 changed files with 12 additions and 3 deletions
|
@ -62,11 +62,20 @@ class QueueCommand(Command):
|
||||||
await call.reply(f"ℹ️ La coda di riproduzione attuale ([c]{data['type']}[/c]) non permette l'anteprima.")
|
await call.reply(f"ℹ️ La coda di riproduzione attuale ([c]{data['type']}[/c]) non permette l'anteprima.")
|
||||||
return
|
return
|
||||||
if data["type"] == "Playlist":
|
if data["type"] == "Playlist":
|
||||||
message = f"ℹ️ Questa [c]Playlist[/c] contiene {len(data['queue'])} elementi, e i prossimi saranno:\n"
|
if len(data["queue"]["strings"]) == 0:
|
||||||
|
message = f"ℹ️ Questa [c]Playlist[/c] è vuota."
|
||||||
|
else:
|
||||||
|
message = f"ℹ️ Questa [c]Playlist[/c] contiene {len(data['queue']['strings'])} elementi, e i prossimi saranno:\n"
|
||||||
elif data["type"] == "Pool":
|
elif data["type"] == "Pool":
|
||||||
message = f"ℹ️ Questo [c]Pool[/c] contiene {len(data['queue'])} elementi, tra cui:\n"
|
if len(data["queue"]["strings"]) == 0:
|
||||||
|
message = f"ℹ️ Questo [c]Pool[/c] è vuoto."
|
||||||
|
else:
|
||||||
|
message = f"ℹ️ Questo [c]Pool[/c] contiene {len(data['queue']['strings'])} elementi, tra cui:\n"
|
||||||
else:
|
else:
|
||||||
message = f"ℹ️ Il PlayMode attuale, [c]{data['type']}[/c], contiene {len(data['queue'])} elementi:\n"
|
if len(data["queue"]["strings"]) == 0:
|
||||||
|
message = f"ℹ️ Il PlayMode attuale, [c]{data['type']}[/c], è vuoto.\n"
|
||||||
|
else:
|
||||||
|
message = f"ℹ️ Il PlayMode attuale, [c]{data['type']}[/c], contiene {len(data['queue']['strings'])} elementi:\n"
|
||||||
if call.interface_name == "discord":
|
if call.interface_name == "discord":
|
||||||
await call.reply(message)
|
await call.reply(message)
|
||||||
for embed in pickle.loads(eval(data["queue"]["pickled_embeds"]))[:5]:
|
for embed in pickle.loads(eval(data["queue"]["pickled_embeds"]))[:5]:
|
||||||
|
|
Loading…
Reference in a new issue