From bc75c12080705cf28ffa3a845abd9c309dd75902 Mon Sep 17 00:00:00 2001 From: Zandario Date: Fri, 2 Oct 2020 21:08:06 -0500 Subject: [PATCH] Update other_reagents.dm --- .../modules/reagents/chemistry/reagents/other_reagents.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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!")