diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm
index b0042dc866..418062ce92 100644
--- a/code/modules/reagents/chemistry/reagents/other_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm
@@ -814,8 +814,8 @@
if(isjellyperson(H))
to_chat(H, "Your jelly shifts and morphs, turning you into another subspecies!")
- 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, "[pick("You feel your internal organs turning into slime.", "You feel very slimelike.")]")
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, "You've become \a jellyperson!")