Ejemplo n.º 1
0
 public bool CanConsume(ChatCommandReceivedEvent chatCommandReceivedEvent)
 {
     return(Commands.Contains(chatCommandReceivedEvent.CommandText) &&
            chatCommandReceivedEvent.IsForUserType(ElligableUserType) &&
            lastUsed.Add(Cooldown) < DateTimeOffset.Now);
 }