feat: make the command more unique/descriptive
This commit is contained in:
parent
4bd23e7638
commit
480fc9b1a0
3 changed files with 5 additions and 5 deletions
|
@ -248,11 +248,11 @@ pub(crate) mod verify {
|
|||
};
|
||||
let db = db_lock.read().await;
|
||||
|
||||
// check if user has used /link
|
||||
// check if user has used /link_wolves
|
||||
let details = if let Some(x) = get_verify_from_db(&db, &command.user.id).await {
|
||||
x
|
||||
} else {
|
||||
return "Please use /link first".to_string();
|
||||
return "Please use /link_wolves first".to_string();
|
||||
};
|
||||
|
||||
let option = command
|
||||
|
@ -286,7 +286,7 @@ pub(crate) mod verify {
|
|||
}
|
||||
Err(e) => {
|
||||
println!("{:?}", e);
|
||||
"Failed to save, please try /link again".to_string()
|
||||
"Failed to save, please try /link_wolves again".to_string()
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue