1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Sistemato il bug di discord dnd

This commit is contained in:
Steffo 2016-09-29 12:16:09 +02:00
parent 6de3b67380
commit 7d6d1b7d2b

6
bot.py
View file

@ -313,10 +313,14 @@ def cv():
else:
# Controlla il suo stato (online, in gioco, afk) e scegli l'emoji appropriata
if member['status'] == "online":
# Qui giace il pallino rosso se uno era in game, propongo di metterlo per quando uno sta streamando
m['emoji'] = chr(128309)
elif member['status'] == "idle":
m['emoji'] = chr(9899)
elif member['status'] == "dnd":
m['emoji'] = chr(128308)
else:
# Stato sconosciuto. Fallback nel caso in cui vengano aggiunti nuovi stati.
m['emoji'] = chr(2573)
# Aggiungi il nome del gioco a destra del nome
if 'game' in member:
m['gamename'] = member['game']['name']