From b1ca28ef3c49f7ad04f73b25c9c317f1b375111a Mon Sep 17 00:00:00 2001 From: oranges Date: Sat, 16 Dec 2017 11:59:47 +1300 Subject: [PATCH 1/2] Merge pull request #33513 from tgstation/Cyberboss-patch-2 ahelp chat command is silent on success --- code/modules/admin/chat_commands.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/chat_commands.dm b/code/modules/admin/chat_commands.dm index 9a54d094e5..744455bb9a 100644 --- a/code/modules/admin/chat_commands.dm +++ b/code/modules/admin/chat_commands.dm @@ -47,7 +47,9 @@ target = AH.initiator_ckey else return "Ticket #[id] not found!" - return IrcPm(target, all_params.Join(" "), sender) + var/res = IrcPm(target, all_params.Join(" "), sender) + if(res != "Message Successful") + return res /datum/server_tools_command/namecheck name = "namecheck"