From 5dbfe209f6d60767859ea6e7750e2ff3de49c937 Mon Sep 17 00:00:00 2001 From: RossAscends <124905043+RossAscends@users.noreply.github.com> Date: Sun, 2 Jul 2023 17:40:15 +0900 Subject: [PATCH] better /cut error messages --- public/scripts/power-user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/power-user.js b/public/scripts/power-user.js index 7641eba9a..ff32322a6 100644 --- a/public/scripts/power-user.js +++ b/public/scripts/power-user.js @@ -1014,7 +1014,7 @@ async function doMesCut(_, text) { //reject invalid args or no args if (text && isNaN(text) || !text) { - toastr.error('Must enter a message ID number.') + toastr.error(`Must enter a single number only, non-number characters disallowed.`) return }