Properly fixes mob feed/drop/slipnom inits

Uh oh there was still one earlier check blocking out the previous fix attempt.
This commit is contained in:
Verkister
2021-05-25 02:29:02 +03:00
committed by GitHub
parent ceadcb317d
commit f2ced3770d

View File

@@ -85,6 +85,11 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE
// //
/proc/is_vore_predator(mob/living/O) /proc/is_vore_predator(mob/living/O)
if(istype(O,/mob/living)) if(istype(O,/mob/living))
if(istype(O,/mob/living/simple_mob)) //CHOMPEdit: On-demand belly loading.
var/mob/living/simple_mob/SM = O
if(SM.vore_active && !SM.voremob_loaded)
SM.voremob_loaded = TRUE
SM.init_vore()
if(O.vore_organs.len > 0) if(O.vore_organs.len > 0)
return TRUE return TRUE