VpSharp/VpSharp.Commands/Attributes/ExecutionChecks/RequireHumanAttribute.cs

19 lines
504 B
C#
Raw Normal View History

2022-12-05 01:43:40 +00:00
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)
{
if (context is null)
{
throw new ArgumentNullException(nameof(context));
}
2022-12-05 01:43:40 +00:00
return Task.FromResult(!context.Avatar.IsBot);
}
}