Add prefix to ping command

This commit is contained in:
Em (Ethan) Ruszanowski 2023-01-27 14:27:17 -05:00
parent a7599f55e1
commit 4ca472471a
No known key found for this signature in database
GPG key ID: C3E7A3C0B1491DFE

View file

@ -7,7 +7,7 @@ use std::{
}; };
/// Basically a ping command /// Basically a ping command
#[poise::command(slash_command)] #[poise::command(slash_command, prefix_command)]
pub(crate) async fn slur(ctx: Context<'_>) -> Result<(), Error> { pub(crate) async fn slur(ctx: Context<'_>) -> Result<(), Error> {
let file = File::open("quotes.txt").unwrap_or_else(|_e| panic!("Quote file missing.")); // Open the quotes file let file = File::open("quotes.txt").unwrap_or_else(|_e| panic!("Quote file missing.")); // Open the quotes file
let file = BufReader::new(file); // Read the quotes file let file = BufReader::new(file); // Read the quotes file