diff options
author | 2021-11-30 14:06:28 +0000 | |
---|---|---|
committer | 2021-11-30 14:06:28 +0000 | |
commit | 005af3bc34310d9374bfd1deeaf37da080c7fee1 (patch) | |
tree | 62a3afa3fa214ad7ccd0de9d75186c1ff5cb4b98 | |
parent | Sort unavailable self-assignable roles to the end of the list (diff) |
Swap remove and unavailable colours for subscribe command
-rw-r--r-- | bot/exts/info/subscribe.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/info/subscribe.py b/bot/exts/info/subscribe.py index d24e8716e..d097e6290 100644 --- a/bot/exts/info/subscribe.py +++ b/bot/exts/info/subscribe.py @@ -80,8 +80,8 @@ class SingleRoleButton(discord.ui.Button): """A button that adds or removes a role from the member depending on it's current state.""" ADD_STYLE = discord.ButtonStyle.success - REMOVE_STYLE = discord.ButtonStyle.secondary - UNAVAILABLE_STYLE = discord.ButtonStyle.red + REMOVE_STYLE = discord.ButtonStyle.red + UNAVAILABLE_STYLE = discord.ButtonStyle.secondary LABEL_FORMAT = "{action} role {role_name}." CUSTOM_ID_FORMAT = "subscribe-{role_id}" |