aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar shtlrs <[email protected]>2022-12-04 11:19:28 +0100
committerGravatar shtlrs <[email protected]>2022-12-04 11:19:28 +0100
commitc630e1b9c2ca624dd272d634cd24704c11bea953 (patch)
treeb70b94e035fede29016d6d27047959ddc1e40f52
parentupdate custom id of the AllSelfAssignableRolesView's button (diff)
make SELF_ASSIGNABLE_ROLES_MESSAGE more inviting for people to interact with
-rw-r--r--bot/exts/info/subscribe.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/bot/exts/info/subscribe.py b/bot/exts/info/subscribe.py
index 8eeb852b8..b77dcd8b0 100644
--- a/bot/exts/info/subscribe.py
+++ b/bot/exts/info/subscribe.py
@@ -185,7 +185,11 @@ class AllSelfAssignableRolesView(discord.ui.View):
class Subscribe(commands.Cog):
"""Cog to allow user to self-assign & remove the roles present in ASSIGNABLE_ROLES."""
- SELF_ASSIGNABLE_ROLES_MESSAGE = "Click on this button to show all self assignable roles"
+ GREETING_EMOJI = ":wave:"
+
+ SELF_ASSIGNABLE_ROLES_MESSAGE = f"Hi there {GREETING_EMOJI}," \
+ "\nDid you know we had various self-assignable roles for server updates an events?"\
+ "\nClick the button below to toggle them."
def __init__(self, bot: Bot):
self.bot = bot