From 9162507c93f05199cc78058ce51ae8961165109f Mon Sep 17 00:00:00 2001 From: Mars Date: Thu, 22 Mar 2018 11:12:56 +0100 Subject: [PATCH] Makes single Man Up give the same message to that person as the global. --- code/modules/admin/admin_verbs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 28df27026a6..97527a17564 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -974,8 +974,8 @@ var/list/admin_verbs_ticket = list( if(!check_rights(R_ADMIN)) return - to_chat(T, "Man up and deal with it.") - to_chat(T, "Move on.") + to_chat(T, "
Man up.
Deal with it.

Move on.

") + T << 'sound/voice/ManUp1.ogg' log_admin("[key_name(usr)] told [key_name(T)] to man up and deal with it.") message_admins("[key_name_admin(usr)] told [key_name(T)] to man up and deal with it.")