Skip to content

Commit

Permalink
diona no longer spawn in morgue trays
Browse files Browse the repository at this point in the history
  • Loading branch information
XeonMations committed Aug 19, 2024
1 parent 1fad07a commit 8522489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mapping/mapping_helpers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ INITIALIZE_IMMEDIATE(/obj/effect/mapping_helpers/no_lava)

/obj/effect/mapping_helpers/dead_body_placer/proc/spawn_dead_human_in_tray(atom/container)
var/mob/living/carbon/human/corpse = new(container)
var/list/possible_alt_species = GLOB.roundstart_races.Copy() - list(SPECIES_HUMAN, SPECIES_IPC)
var/list/possible_alt_species = GLOB.roundstart_races.Copy() - list(SPECIES_HUMAN, SPECIES_IPC, SPECIES_DIONA)
if(prob(15) && length(possible_alt_species))
corpse.set_species(GLOB.species_list[pick(possible_alt_species)])
corpse.give_random_dormant_disease(25, min_symptoms = 1, max_symptoms = 5) // slightly more likely that an average stationgoer to have a dormant disease, bc who KNOWS how they died?
Expand Down

0 comments on commit 8522489

Please sign in to comment.