Update /ask toasts to warnings for consistency

1c65a5badd6d9f5546fdbb620028676d21e01638

Wolfsblvt <wolfsblvt@gmail.com>

1 files changed, +2 -2Ignore whitespace
public/scripts/slash-commands.js+2 -2
@@ -2481,7 +2481,7 @@ async function askCharacter(args, text) {
24812481 // Not supported in group chats
24822482 // TODO: Maybe support group chats?
24832483 if (selected_group) {
24842484 toastr.errorwarning('Cannot run /ask command in a group chat!');
24852485 return '';
24862486 }
24872487
@@ -2501,7 +2501,7 @@ async function askCharacter(args, text) {
25012501 // Find the character
25022502 const chId = characters.findIndex((e) => e.name === name || e.avatar === name);
25032503 if (!characters[chId] || chId === -1) {
25042504 toastr.errorwarning('Character not found.');
25052505 return '';
25062506 }
25072507