Delete the notification when the bot pins a message
This commit is contained in:
parent
7b64129cc1
commit
56d3c6b089
1 changed files with 5 additions and 0 deletions
|
@ -54,6 +54,11 @@ public static class EventHandler
|
||||||
|
|
||||||
public static async Task OnMessageCreated(DiscordClient client, MessageCreatedEventArgs e)
|
public static async Task OnMessageCreated(DiscordClient client, MessageCreatedEventArgs e)
|
||||||
{
|
{
|
||||||
|
if (e.Author.IsCurrent && e.Message.MessageType == DiscordMessageType.ChannelPinnedMessage)
|
||||||
|
{
|
||||||
|
await e.Message.DeleteAsync();
|
||||||
|
}
|
||||||
|
|
||||||
if (e.Author.IsBot)
|
if (e.Author.IsBot)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue