Skip to content

Commit

Permalink
Allow sentient humans to still turn into a random slime
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomGamer123 committed Jun 23, 2022
1 parent 17128f8 commit 7950ac7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions code/datums/diseases/transformation.dm
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,12 @@
if(human.dna.species.id != SPECIES_SLIMEPERSON && affected_mob.dna.species.id != SPECIES_STARGAZER && affected_mob.dna.species.id != SPECIES_LUMINESCENT)
human.set_species(/datum/species/jelly/slime)

/datum/disease/transformation/slime/do_disease_transformation(mob/living/affected_mob)
if(affected_mob.client && ishuman(affected_mob)) // if they are a human who's not a monkey and are sentient, then let them have the old fun
var/mob/living/carbon/human/human = affected_mob
if(human.dna.species.id != SPECIES_MONKEY)
new_form = /mob/living/simple_animal/slime/random
..()

/datum/disease/transformation/corgi
name = "The Barkening"
Expand Down

0 comments on commit 7950ac7

Please sign in to comment.