fix: unbreak error reporting for @mention prefix

This commit is contained in:
spiral 2022-01-14 15:05:46 -05:00
parent 47e15e3acb
commit d58cc216c0
No known key found for this signature in database
GPG key ID: A6059F0CA0E1BD31
3 changed files with 5 additions and 6 deletions

View file

@ -6,5 +6,5 @@ public interface IEventHandler<in T> where T : IGatewayEvent
{
Task Handle(Shard shard, T evt);
ulong? ErrorChannelFor(T evt) => null;
ulong? ErrorChannelFor(T evt, ulong userId) => null;
}