aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2021-11-30 14:06:53 +0000
committerGravatar Chris Lovering <[email protected]>2021-11-30 14:06:53 +0000
commit57c1b8e6bbadf8139597e7105d6681a13781b69a (patch)
treec89d1a7ca1c017b9e021a6f7705de5e92f808567
parentSwap remove and unavailable colours for subscribe command (diff)
Add lock emoji to highlight unavailable self-assignable roles
-rw-r--r--bot/exts/info/subscribe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/subscribe.py b/bot/exts/info/subscribe.py
index d097e6290..16379d2b2 100644
--- a/bot/exts/info/subscribe.py
+++ b/bot/exts/info/subscribe.py
@@ -91,7 +91,7 @@ class SingleRoleButton(discord.ui.Button):
label = self.LABEL_FORMAT.format(action="Remove" if assigned else "Add", role_name=role.name)
else:
style = self.UNAVAILABLE_STYLE
- label = role.name
+ label = f"🔒 {role.name}"
super().__init__(
style=style,