From da96910c5c3b45a4868fffa2a91e94c18913a0ca Mon Sep 17 00:00:00 2001
From: Shadow-Quill <44811257+Shadow-Quill@users.noreply.github.com>
Date: Wed, 26 Aug 2020 02:47:49 -0500
Subject: [PATCH] Attack! (#7538)
---
code/modules/mob/holder.dm | 1 +
code/modules/mob/mob_grab.dm | 1 +
2 files changed, 2 insertions(+)
diff --git a/code/modules/mob/holder.dm b/code/modules/mob/holder.dm
index 1df1e25b88c..8c9b5c9d747 100644
--- a/code/modules/mob/holder.dm
+++ b/code/modules/mob/holder.dm
@@ -198,6 +198,7 @@ var/list/holder_mob_icon_cache = list()
to_chat(grabber, "You scoop up \the [src]!")
to_chat(src, "\The [grabber] scoops you up!")
+ add_attack_logs(grabber, H.held_mob, "Scooped up", FALSE) // Not important enough to notify admins, but still helpful.
H.sync(src)
return H
diff --git a/code/modules/mob/mob_grab.dm b/code/modules/mob/mob_grab.dm
index 5cdbbaa6e6d..88101fdc6c9 100644
--- a/code/modules/mob/mob_grab.dm
+++ b/code/modules/mob/mob_grab.dm
@@ -261,6 +261,7 @@
state = GRAB_AGGRESSIVE
icon_state = "grabbed1"
hud.icon_state = "reinforce1"
+ add_attack_logs(assailant, affecting, "Aggressively grabbed", FALSE) // Not important enough to notify admins, but still helpful.
else if(state < GRAB_NECK)
if(isslime(affecting))
to_chat(assailant, "You squeeze [affecting], but nothing interesting happens.")