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.")