mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 05:30:05 +01:00
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  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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user