From dedd110700ab848439febaabb7f7650aee68a80f Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Fri, 20 Jun 2014 13:42:42 -0400 Subject: [PATCH] Send more stuff to attack log rather than admin log. --- code/__HELPERS/mobs.dm | 2 +- code/game/objects/items/weapons/extinguisher.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index a55e32fc99e..5a120865893 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -118,5 +118,5 @@ proc/add_logs(mob/target, mob/user, what_done, var/object=null, var/addition=nul if(target.client) if(what_done in ignore) return if(target == user)return - message_admins("[user.name][ismob(user) ? "([user.ckey])" : ""] [what_done] [target.name][ismob(target) ? "([target.ckey])" : ""][object ? " with [object]" : " "][addition](JMP)") + msg_admin_attack("[user.name][ismob(user) ? "([user.ckey])" : ""] [what_done] [target.name][ismob(target) ? "([target.ckey])" : ""][object ? " with [object]" : " "][addition](JMP)") diff --git a/code/game/objects/items/weapons/extinguisher.dm b/code/game/objects/items/weapons/extinguisher.dm index 4742ef912d1..76d5b30acaa 100644 --- a/code/game/objects/items/weapons/extinguisher.dm +++ b/code/game/objects/items/weapons/extinguisher.dm @@ -93,7 +93,7 @@ user.drop_item() W.loc=src user << "You cram \the [W] into the nozzle of \the [src]." - message_admins("[user]/[user.ckey] has crammed \a [W] into a [src].") + msg_admin_attack("[user]/[user.ckey] has crammed \a [W] into a [src].") /obj/item/weapon/extinguisher/afterattack(atom/target, mob/user , flag)