From bcbf02e8096451b05de6d9539dcc9c9906943dc4 Mon Sep 17 00:00:00 2001 From: Ccomp5950 Date: Fri, 22 Nov 2013 18:36:20 -0600 Subject: [PATCH] Changed admin message to use the proc that formats for easy Admin-PM of the baddie. Thanks Kilakk for pointing it out. --- code/game/objects/items/devices/PDA/PDA.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm index 29db96bdf2c..9123617f2a7 100755 --- a/code/game/objects/items/devices/PDA/PDA.dm +++ b/code/game/objects/items/devices/PDA/PDA.dm @@ -715,12 +715,12 @@ var/global/list/obj/item/device/pda/PDAs = list() U.show_message("\red Energy feeds back into your [src]!", 1) U << browse(null, "window=pda") explode() - log_admin("[U] ([U.key]) just attempted to blow up [P] with the Detomatix cartridge but failed, blowing themselves up") - message_admins("[U] ([U.key]) just attempted to blow up [P] with the Detomatix cartridge but failed, blowing themselves up", 1) + log_admin("[key_name(U)] just attempted to blow up [P] with the Detomatix cartridge but failed, blowing themselves up") + message_admins("[key_name_admin(U)] just attempted to blow up [P] with the Detomatix cartridge but failed, blowing themselves up", 1) else U.show_message("\blue Success!", 1) - log_admin("[U] ([U.key]) just attempted to blow up [P] with the Detomatix cartridge and succeded") - message_admins("[U] ([U.key]) just attempted to blow up [P] with the Detomatix cartridge and succeded", 1) + log_admin("[key_name(U)] just attempted to blow up [P] with the Detomatix cartridge and succeded") + message_admins("[key_name_admin(U)] just attempted to blow up [P] with the Detomatix cartridge and succeded", 1) P.explode() else U << "PDA not found."