Pete's corpse no longer eats vines (#81752)

## About The Pull Request

Pete can no longer eat vines while dead.

<!-- Describe The Pull Request. Please be sure every change is
documented or this
can delay review and even discourage maintainers from merging your PR!
-->

## 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
🆑
fix: Pete can no longer eat vines while dead.
/🆑
This commit is contained in:
Rhials
2024-03-01 13:54:24 -07:00
committed by GitHub
parent 96cfd92a4a
commit fad4e5c8b5
@@ -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()