From 7476fcaa8ded7e9248c882c390bb2162467e9542 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 16 Jan 2024 13:10:16 +0000 Subject: [PATCH] misc(aurora): changed some strings in the addrole and immunity embeds --- aurora/configuration/embed.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aurora/configuration/embed.py b/aurora/configuration/embed.py index 6a820af..ecf6f68 100644 --- a/aurora/configuration/embed.py +++ b/aurora/configuration/embed.py @@ -99,7 +99,7 @@ async def addrole(ctx: commands.Context) -> Embed: e = await _core(ctx) e.title += ": Addrole Whitelist" - e.description = "Use the buttons below to manage this guild's addrole whitelist." + e.description = "Use the select menu below to manage this guild's addrole whitelist." if len(whitelist) > 4000 and len(whitelist) < 5000: lines = whitelist.split('\n') @@ -132,7 +132,7 @@ async def immune(ctx: commands.Context) -> Embed: e = await _core(ctx) e.title += ": Immune Roles" - e.description = "Use the buttons below to manage this guild's immune roles." + e.description = "Use the select menu below to manage this guild's immune roles." if len(immune_str) > 4000 and len(immune_str) < 5000: lines = immune_str.split('\n')