From 3b54bd64175d207ff454d0bcf95ae5841dfe7d2c Mon Sep 17 00:00:00 2001 From: Jacquerel Date: Sat, 26 Jul 2025 03:13:09 +0100 Subject: [PATCH] Logging for morph snacks (#92301) ## About The Pull Request This PR simply adds logging whenever a morph eats something (and where it was at the time) ## Why It's Good For The Game These are barely available to players in-game but if admins spawn them or something it's quite hard to track what they were actually doing, considering how disruptive they can potentially be ## Changelog :cl: admins: Adds better logging for morphs eating things /:cl: --- code/modules/mob/living/basic/space_fauna/morph.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/basic/space_fauna/morph.dm b/code/modules/mob/living/basic/space_fauna/morph.dm index 65f3bf7eb82..3190f3313e9 100644 --- a/code/modules/mob/living/basic/space_fauna/morph.dm +++ b/code/modules/mob/living/basic/space_fauna/morph.dm @@ -189,6 +189,7 @@ if((delay > 0 SECONDS) && !do_after(src, delay, target = eatable)) return FALSE + log_combat(src, eatable, "ate", addition = "as morph") visible_message(span_warning("[src] swallows [eatable] whole!")) eatable.forceMove(src) if(update_health != 0)