From c1031a5a661eaf37de24df6fc95c8aaf53d9a031 Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Mon, 5 Oct 2015 20:48:07 -0700 Subject: [PATCH] removes admin announce from follow. This was only kept because it was the only easy way to claim an admin help. Because starting to type a response to an admin help announces, this is no longer necessary --- code/modules/admin/topic.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 83e5b41a4aa..6f94f2748b7 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -1531,8 +1531,6 @@ if(!isobserver(usr)) C.admin_ghost() var/mob/dead/observer/A = C.mob A.ManualFollow(M) - log_admin("[key_name(usr)] followed [key_name(M)]") - message_admins("[key_name_admin(usr)] followed [key_name_admin(M)]") else if(href_list["adminplayerobservecoodjump"]) if(!isobserver(usr) && !check_rights(R_ADMIN)) return @@ -2136,4 +2134,4 @@ O.ears = text2path(href_list["outfit_ears"]) custom_outfits.Add(O) - message_admins("[key_name(usr)] created \"[O.name]\" outfit!") + message_admins("[key_name(usr)] created \"[O.name]\" outfit!")