diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm index b342c9a754f..85454d48494 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord.dm @@ -160,9 +160,7 @@ else if(dwarf_mob) new /obj/effect/mob_spawn/corpse/human/legioninfested/dwarf(our_turf) else if(snow_legion) - new /obj/effect/mob_spawn/corpse/human/legioninfested/snow(our_turf) - - new /obj/effect/mob_spawn/corpse/human/legioninfested/dwarf(our_turf) + new /obj/effect/mob_spawn/corpse/human/snowlegioninfested(our_turf) else new /obj/effect/mob_spawn/corpse/human/legioninfested(our_turf) return ..() diff --git a/code/modules/mob_spawn/corpses/mining_corpses.dm b/code/modules/mob_spawn/corpses/mining_corpses.dm index 8f28bbd430d..c0ea4b6af42 100644 --- a/code/modules/mob_spawn/corpses/mining_corpses.dm +++ b/code/modules/mob_spawn/corpses/mining_corpses.dm @@ -59,7 +59,7 @@ outfit = /datum/outfit/consumed_shadowperson . = ..() -/obj/effect/mob_spawn/corpse/human/legioninfested/snow/Initialize(mapload) +/obj/effect/mob_spawn/corpse/human/snowlegioninfested/Initialize(mapload) var/corpse_theme = pick_weight(list( "Miner" = 64, "Clown" = 5,