From 95fe0113dbe09b5a3a579256ad80157c3b776378 Mon Sep 17 00:00:00 2001 From: Chris Helming Date: Mon, 3 Nov 2025 10:45:25 -0500 Subject: [PATCH] verify admin - add debug for user error --- Parsers/Admin tool - Verify.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Parsers/Admin tool - Verify.js b/Parsers/Admin tool - Verify.js index 03a6bcf..9c226cb 100644 --- a/Parsers/Admin tool - Verify.js +++ b/Parsers/Admin tool - Verify.js @@ -39,6 +39,7 @@ if ( } else { messageBody = "!verify-admin must be called with a user tag, followed by an optional parameter and optional description. For example: `!verify-admin @Astrid -unv Is an Impasta`\n\nThe full list of accepted triggers can be found by sending `!verify-admin -help`"; + slacker.send_chat(current, messageBody, true); } } @@ -77,7 +78,7 @@ if ( messageBody += "User information:\n>" + description; } else { messageBody += - "I'm afraid I can't do that as the ~limit~ user does not exist."; + `I'm afraid I can't do that as the ~limit~ user (<@${userId}>) does not exist.`; } slacker.send_chat(current, messageBody, true); }