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)