mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
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:
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user