mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-27 15:18:09 +01:00
Fixes belly inits for maintpreds/morphs
Maintpreds and morphs now spawn with their provided vorgans without getting the vorepanel to replace it with an incomplete set of the char slot vorgans.
This commit is contained in:
@@ -65,6 +65,8 @@
|
||||
var/mob/living/simple_mob/newPred = new mobtype(get_turf(src))
|
||||
qdel(newPred.ai_holder)
|
||||
newPred.ai_holder = null
|
||||
newPred.voremob_loaded = TRUE //CHOMPedit: On-demand belly loading.
|
||||
newPred.init_vore() //CHOMPedit: On-demand belly loading.
|
||||
//newPred.movement_cooldown = 0 // The "needless artificial speed cap" exists for a reason
|
||||
if(M.mind)
|
||||
M.mind.transfer_to(newPred)
|
||||
@@ -99,6 +101,8 @@
|
||||
/obj/structure/ghost_pod/ghost_activated/morphspawn/create_occupant(var/mob/M)
|
||||
..()
|
||||
var/mob/living/simple_mob/vore/hostile/morph/newMorph = new /mob/living/simple_mob/vore/hostile/morph(get_turf(src))
|
||||
newMorph.voremob_loaded = TRUE //CHOMPedit: On-demand belly loading.
|
||||
newMorph.init_vore() //CHOMPedit: On-demand belly loading.
|
||||
if(M.mind)
|
||||
M.mind.transfer_to(newMorph)
|
||||
to_chat(M, "<span class='notice'>You are a <b>Morph</b>, somehow having gotten aboard the station in your wandering. \
|
||||
|
||||
Reference in New Issue
Block a user