From 565c2320c42219aa730fa30f190527b0f6e32022 Mon Sep 17 00:00:00 2001 From: "musketstgstation@gmail.com" Date: Sun, 2 Jan 2011 16:58:53 +0000 Subject: [PATCH] Added admin log messages for chemistry grenades (including cleaner and incendiary, but not flashbangs as they're their own thing) git-svn-id: http://tgstation13.googlecode.com/svn/trunk@751 316c924e-a436-60f5-8080-3fe189b3f50e --- code/WorkInProgress/Chemistry-Tools.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/WorkInProgress/Chemistry-Tools.dm b/code/WorkInProgress/Chemistry-Tools.dm index 5f455da5331..da1de14f0f6 100644 --- a/code/WorkInProgress/Chemistry-Tools.dm +++ b/code/WorkInProgress/Chemistry-Tools.dm @@ -60,6 +60,7 @@ if (istype(target, /obj/item/weapon/storage)) return ..() if (!src.state && stage == 2) user << "\red You prime the grenade! 3 seconds!" + message_admins("[key_name_admin(user)] used a chemistry grenade ([src.name]).") src.state = 1 src.icon_state = "chemg4" playsound(src.loc, 'armbomb.ogg', 75, 1, -3) @@ -72,6 +73,7 @@ attack_self(mob/user as mob) if (!src.state && stage == 2) user << "\red You prime the grenade! 3 seconds!" + message_admins("[key_name_admin(user)] used a chemistry grenade ([src.name]).") src.state = 1 src.icon_state = "chemg4" playsound(src.loc, 'armbomb.ogg', 75, 1, -3)