Merge pull request #2676 from Screemonster/bellybugs

Fixes some bugs relating to absorption and struggling, makes struggle feedback messages clearer
This commit is contained in:
Arokha Sieyes
2018-01-05 10:10:46 -05:00
committed by GitHub
2 changed files with 23 additions and 21 deletions
@@ -36,7 +36,7 @@
/mob/living/simple_animal/Destroy()
for(var/I in vore_organs)
var/datum/belly/B = vore_organs[I]
B.release_all_contents() // When your stomach is empty
B.release_all_contents(include_absorbed = TRUE) // When your stomach is empty
prey_excludes.Cut()
. = ..()
@@ -130,7 +130,7 @@
/mob/living/simple_animal/death()
for(var/I in vore_organs)
var/datum/belly/B = vore_organs[I]
B.release_all_contents() // When your stomach is empty
B.release_all_contents(include_absorbed = TRUE) // When your stomach is empty
..() // then you have my permission to die.
// Simple animals have only one belly. This creates it (if it isn't already set up)