feat: redirect commands

This commit is contained in:
sam 2024-10-16 14:53:30 +02:00
parent 03dc16b0b3
commit bacbc6db0e
Signed by: sam
GPG key ID: 5F3C3C1B3166639D
7 changed files with 212 additions and 7 deletions

View file

@ -166,7 +166,7 @@ public class IgnoreChannelCommands(
var value = string.Join("\n", visibleCategories.Select(c => $"<#{c.Id}>"));
if (nonVisibleCategories != 0)
value +=
$"\n\n{nonVisibleCategories} channel(s) were ignored as you do not have access to them.";
$"\n\n{nonVisibleCategories} channel(s) are not shown as you do not have access to them.";
embed.AddField("Categories", value);
}
@ -183,7 +183,7 @@ public class IgnoreChannelCommands(
var value = string.Join("\n", visibleBase.Select(c => $"<#{c.Id}>"));
if (nonVisibleBase != 0)
value +=
$"\n\n{nonVisibleBase} channel(s) were ignored as you do not have access to them.";
$"\n\n{nonVisibleBase} channel(s) are not shown as you do not have access to them.";
embed.AddField("Channels", value);
}