Update other_reagents.dm

This commit is contained in:
Zandario
2020-10-02 21:08:06 -05:00
committed by GitHub
parent 1620e3887c
commit bc75c12080

View File

@@ -814,8 +814,8 @@
if(isjellyperson(H))
to_chat(H, "<span class='warning'>Your jelly shifts and morphs, turning you into another subspecies!</span>")
var/species_category = pick(subtypesof(/datum/species/jelly))
H.set_species(species_category)
var/species_type = pick(subtypesof(/datum/species/jelly))
H.set_species(species_type)
H.reagents.del_reagent(type)
switch(current_cycle)
@@ -829,8 +829,8 @@
if(prob(10))
to_chat(H, "<span class='warning'>[pick("You feel your internal organs turning into slime.", "You feel very slimelike.")]</span>")
if(20 to INFINITY)
var/species_category = pick(subtypesof(/datum/species/jelly))
H.set_species(species_category)
var/species_type = pick(subtypesof(/datum/species/jelly))
H.set_species(species_type)
H.reagents.del_reagent(type)
to_chat(H, "<span class='warning'>You've become \a jellyperson!</span>")