[MIRROR] low sorting priority fixes (#6878)

Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com>
Co-authored-by: CHOMPStation2 <chompsation2@gmail.com>
This commit is contained in:
CHOMPStation2
2023-08-27 00:33:55 -07:00
committed by GitHub
parent 8d7164df38
commit 1db3f60abc
2 changed files with 2 additions and 0 deletions

View File

@@ -37,6 +37,7 @@
/obj/effect/landmark/corpse/proc/createCorpse() //Creates a mob and checks for gear in each slot before attempting to equip it.
var/mob/living/carbon/human/M = new /mob/living/carbon/human (src.loc)
M.low_sorting_priority = TRUE
if(random_species)
var/random_pick = pick(random_species_list)
M.set_species(random_pick)

View File

@@ -1896,6 +1896,7 @@
H.set_species(monkey_type)
H.real_name = H.species.get_random_name()
H.name = H.real_name
H.low_sorting_priority = TRUE
if(ismob(loc))
var/mob/M = loc
M.unEquip(src)