From 77441b42c71df2fab2733218c306f69e4b694766 Mon Sep 17 00:00:00 2001 From: Iamgoofball Date: Sun, 4 Oct 2015 19:39:45 -0700 Subject: [PATCH] Kicks now inform you who kicked you. --- code/modules/admin/topic.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 9b89c0c01e7..074bd3844b9 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -988,7 +988,7 @@ if(!check_if_greater_rights_than(M.client)) usr << "Error: They have more rights than you do." return - M << "You have been kicked from the server." + M << "You have been kicked from the server by [usr.client.ckey]." log_admin("[key_name(usr)] booted [key_name(M)].") message_admins("[key_name_admin(usr)] booted [key_name_admin(M)].") //M.client = null @@ -2135,4 +2135,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!")