diff options
| author | 2019-12-18 08:55:26 -0800 | |
|---|---|---|
| committer | 2019-12-18 08:55:26 -0800 | |
| commit | 4191bf859d726e3e605c62472bb2ce2bb8a419e2 (patch) | |
| tree | 635b8f80039e033098263303dbd931af78342345 | |
| parent | ModLog: exclude afk attribute from voice state log (diff) | |
Constants: add voice state emotes
| -rw-r--r-- | bot/constants.py | 4 | ||||
| -rw-r--r-- | config-default.yml | 4 | 
2 files changed, 8 insertions, 0 deletions
| diff --git a/bot/constants.py b/bot/constants.py index b96f23f83..725792516 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -325,6 +325,10 @@ class Icons(metaclass=YAMLGetter):      superstarify: str      unsuperstarify: str +    voice_state_blue: str +    voice_state_green: str +    voice_state_red: str +  class CleanMessages(metaclass=YAMLGetter):      section = "bot" diff --git a/config-default.yml b/config-default.yml index 8032b50a4..ae09db66a 100644 --- a/config-default.yml +++ b/config-default.yml @@ -92,6 +92,10 @@ style:          superstarify: "https://cdn.discordapp.com/emojis/636288153044516874.png"          unsuperstarify: "https://cdn.discordapp.com/emojis/636288201258172446.png" +        voice_state_blue: "https://cdn.discordapp.com/emojis/656899769662439456.png" +        voice_state_green: "https://cdn.discordapp.com/emojis/656899770094452754.png" +        voice_state_red: "https://cdn.discordapp.com/emojis/656899769905709076.png" +  guild:      id: 267624335836053506 | 
