mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-13 02:55:42 +00:00
15 lines
444 B
C#
15 lines
444 B
C#
|
namespace VpSharp.Commands.Attributes.ExecutionChecks;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Specifies that this command cannot be run by bots.
|
|||
|
/// </summary>
|
|||
|
public sealed class RequireHumanAttribute : PreExecutionCheckAttribute
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected internal override Task<bool> PerformAsync(CommandContext context)
|
|||
|
{
|
|||
|
ArgumentNullException.ThrowIfNull(context);
|
|||
|
return Task.FromResult(!context.Avatar.IsBot);
|
|||
|
}
|
|||
|
}
|