mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-10 08:45:41 +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);
|
|
}
|
|
}
|