mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-24 21:57:53 +01:00
[MIRROR] fix simple mob bellies on admin spawn (#11236)
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
co-authored by
Kashargul
parent
615f8499fd
commit
9765827ac1
@@ -104,8 +104,7 @@
|
||||
var/mob/living/simple_mob/shadekin/red/shadekin = new(Ts)
|
||||
//Abuse of shadekin
|
||||
shadekin.real_name = shadekin.name
|
||||
shadekin.voremob_loaded = TRUE
|
||||
shadekin.init_vore()
|
||||
shadekin.init_vore(TRUE)
|
||||
shadekin.ability_flags |= 0x1
|
||||
shadekin.phase_shift()
|
||||
shadekin.ai_holder.give_target(target)
|
||||
@@ -158,8 +157,7 @@
|
||||
target.transforming = TRUE //Cheap hack to stop them from moving
|
||||
var/mob/living/simple_mob/shadekin/shadekin = new kin_type(Tt)
|
||||
shadekin.real_name = shadekin.name
|
||||
shadekin.voremob_loaded = TRUE
|
||||
shadekin.init_vore()
|
||||
shadekin.init_vore(TRUE)
|
||||
shadekin.can_be_drop_pred = TRUE
|
||||
shadekin.dir = SOUTH
|
||||
shadekin.ability_flags |= 0x1
|
||||
|
||||
@@ -73,8 +73,8 @@
|
||||
new_mob.vore_selected = new_mob.vore_organs[1]
|
||||
if(isanimal(new_mob))
|
||||
var/mob/living/simple_mob/Sm = new_mob
|
||||
Sm.vore_active = TRUE
|
||||
Sm.voremob_loaded = TRUE
|
||||
if(!Sm.voremob_loaded || !Sm.vore_active)
|
||||
Sm.init_vore(TRUE)
|
||||
|
||||
log_admin("[key_name_admin(src)] has spawned [new_mob.key] as mob [new_mob.type].")
|
||||
message_admins("[key_name_admin(src)] has spawned [new_mob.key] as mob [new_mob.type].", 1)
|
||||
|
||||
@@ -64,8 +64,7 @@
|
||||
var/mob/living/simple_mob/shadekin/red/shadekin = new(Ts)
|
||||
//Abuse of shadekin
|
||||
shadekin.real_name = shadekin.name
|
||||
shadekin.voremob_loaded = TRUE
|
||||
shadekin.init_vore()
|
||||
shadekin.init_vore(TRUE)
|
||||
shadekin.ability_flags |= 0x1
|
||||
shadekin.phase_shift()
|
||||
shadekin.ai_holder.give_target(target)
|
||||
@@ -118,8 +117,7 @@
|
||||
target.transforming = TRUE //Cheap hack to stop them from moving
|
||||
var/mob/living/simple_mob/shadekin/shadekin = new kin_type(Tt)
|
||||
shadekin.real_name = shadekin.name
|
||||
shadekin.voremob_loaded = TRUE
|
||||
shadekin.init_vore()
|
||||
shadekin.init_vore(TRUE)
|
||||
shadekin.can_be_drop_pred = TRUE
|
||||
shadekin.dir = SOUTH
|
||||
shadekin.ability_flags |= 0x1
|
||||
|
||||
Reference in New Issue
Block a user