From 2f434b45c139928eafe30ccd8a3285a46d069ef7 Mon Sep 17 00:00:00 2001 From: Atermonera Date: Tue, 4 Jun 2019 09:13:02 -0800 Subject: [PATCH] Merge pull request #6189 from mistyLuminescence/manup Critical ManUpulator Fix --- 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 14fc193742..4bad67b370 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -1064,7 +1064,7 @@ var/list/admin_verbs_event_manager = list( if(alert("Are you sure you want to tell them to man up?","Confirmation","Deal with it","No")=="No") return T << "Man up and deal with it." - T << "Move on." + T << "Move along." 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.", 1) @@ -1077,7 +1077,7 @@ var/list/admin_verbs_event_manager = list( if(alert("Are you sure you want to tell the whole server up?","Confirmation","Deal with it","No")=="No") return for (var/mob/T as mob in mob_list) - T << "
Man up.
Deal with it.

Move on.

" + T << "
Man up.
Deal with it.

Move along.

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