From 9b0ce686601dd9c0f813dfe4a5de5cba3f83907e Mon Sep 17 00:00:00 2001 From: skull132 Date: Sun, 14 Aug 2016 17:01:49 +0300 Subject: [PATCH] Logs martial arts now! (#727) * Logs martial arts now! Because holy hell, those not being logged is stupid. * Canister jumplinks Because they're useful. --- code/game/machinery/atmoalter/portable_atmospherics.dm | 2 +- code/modules/mob/living/carbon/human/human_attackhand.dm | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/atmoalter/portable_atmospherics.dm b/code/game/machinery/atmoalter/portable_atmospherics.dm index 66cde27a52e..cf4606f68d1 100644 --- a/code/game/machinery/atmoalter/portable_atmospherics.dm +++ b/code/game/machinery/atmoalter/portable_atmospherics.dm @@ -210,4 +210,4 @@ else gases = gas log_admin("[usr] ([usr.ckey]) opened '[src.name]' containing [gases].") - message_admins("[usr] ([usr.ckey]) opened '[src.name]' containing [gases].") + message_admins("[usr] ([usr.ckey]) opened '[src.name]' containing [gases]. (JMP)") diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm index 55cf10dabd7..076cd0a21c8 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand.dm @@ -402,6 +402,7 @@ user.visible_message("[user] begins to dislocate [src]'s [organ.joint]!") if(do_after(user, 100)) organ.dislocate(1) + admin_attack_log(user, src, "dislocated [organ.joint].", "had his [organ.joint] dislocated.", "dislocated [organ.joint] of") src.visible_message("[src]'s [organ.joint] [pick("gives way","caves in","crumbles","collapses")]!") return 1 return 0