Update Bot.cs

- Add note telling users to describe what happened when reporting errors
This commit is contained in:
Grey Himmel 2019-11-30 19:41:04 -05:00 committed by Astrid
parent cb1c44a27f
commit da83f72582

View File

@ -382,7 +382,7 @@ namespace PluralKit.Bot
{
var eid = _services.GetService<EventIdProvider>().EventId;
await msg.Channel.SendMessageAsync(
$"{Emojis.Error} Internal error occurred. Please join the support server (<https://discord.gg/PczBt78>), and send the developer this ID: `{eid}`");
$"{Emojis.Error} Internal error occurred. Please join the support server (<https://discord.gg/PczBt78>), and send the developer this ID: `{eid}`\nBe sure to include a description of what you were doing to make the error occur.");
}
// If not, don't care. lol.
@ -405,4 +405,4 @@ namespace PluralKit.Bot
public Task HandleMessagesBulkDelete(IReadOnlyCollection<Cacheable<IMessage, ulong>> messages,
IMessageChannel channel) => _proxy.HandleMessageBulkDeleteAsync(messages, channel);
}
}
}