From d57eb8a8a7664ef9577d582f913ecfa55b66500e Mon Sep 17 00:00:00 2001 From: NovaBot <154629622+NovaBot13@users.noreply.github.com> Date: Fri, 1 Mar 2024 16:31:18 -0500 Subject: [PATCH] [MIRROR] Pete's corpse no longer eats vines (#1231) * Pete's corpse no longer eats vines (#81752) ## About The Pull Request Pete can no longer eat vines while dead. ## Why It's Good For The Game ![image](https://github.com/tgstation/tgstation/assets/28870487/b3156bf2-386d-427f-91b8-61a4dfe83424) This should probably not be happening even though it was funny to watch. ## Changelog :cl: fix: Pete can no longer eat vines while dead. /:cl: * Pete's corpse no longer eats vines --------- Co-authored-by: Rhials <28870487+Rhials@users.noreply.github.com> --- code/modules/mob/living/basic/farm_animals/goat/_goat.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/basic/farm_animals/goat/_goat.dm b/code/modules/mob/living/basic/farm_animals/goat/_goat.dm index 34b92f21882..f2354cc5f14 100644 --- a/code/modules/mob/living/basic/farm_animals/goat/_goat.dm +++ b/code/modules/mob/living/basic/farm_animals/goat/_goat.dm @@ -100,7 +100,7 @@ /// Handles automagically eating a plant when we move into a turf that has one. /mob/living/basic/goat/proc/on_move(datum/source, atom/entering_loc) SIGNAL_HANDLER - if(!isturf(entering_loc)) + if(!isturf(entering_loc) || stat == DEAD) return var/list/edible_plants = list()