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:
parent
6de3b67380
commit
7d6d1b7d2b
1 changed files with 5 additions and 1 deletions
6
bot.py
6
bot.py
|
@ -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']
|
||||
|
|
Loading…
Reference in a new issue