From 9162507c93f05199cc78058ce51ae8961165109f Mon Sep 17 00:00:00 2001 From: Mars Date: Thu, 22 Mar 2018 11:12:56 +0100 Subject: [PATCH 1/2] 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.") From fe7991da6859cd75ad6a597aedfd3b9f570c595d Mon Sep 17 00:00:00 2001 From: Mars Date: Fri, 13 Apr 2018 13:27:26 +0200 Subject: [PATCH 2/2] Revert man up message change --- code/modules/admin/admin_verbs.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 97527a17564..c0a11c2e005 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -974,7 +974,8 @@ var/list/admin_verbs_ticket = list( if(!check_rights(R_ADMIN)) return - to_chat(T, "
Man up.
Deal with it.

Move on.

") + to_chat(T, "Man up and deal with it.") + to_chat(T, "Move on.") T << 'sound/voice/ManUp1.ogg' log_admin("[key_name(usr)] told [key_name(T)] to man up and deal with it.")