diff --git a/code/datums/diseases/advance/advance.dm b/code/datums/diseases/advance/advance.dm
index aa13eb17c16..4f3ed4ede74 100644
--- a/code/datums/diseases/advance/advance.dm
+++ b/code/datums/diseases/advance/advance.dm
@@ -42,7 +42,7 @@
/datum/reagent/potassium, /datum/reagent/consumable/ethanol, /datum/reagent/lithium, /datum/reagent/silicon, /datum/reagent/bromine
),
list( // level 3
- /datum/reagent/consumable/sodiumchloride, /datum/reagent/consumable/sugar, /datum/reagent/consumable/orangejuice, /datum/reagent/consumable/tomatojuice, /datum/reagent/consumable/milk
+ /datum/reagent/consumable/salt, /datum/reagent/consumable/sugar, /datum/reagent/consumable/orangejuice, /datum/reagent/consumable/tomatojuice, /datum/reagent/consumable/milk
),
list( //level 4
/datum/reagent/medicine/spaceacillin, /datum/reagent/medicine/salglu_solution, /datum/reagent/medicine/epinephrine, /datum/reagent/medicine/c2/multiver
diff --git a/code/datums/diseases/gastrolisis.dm b/code/datums/diseases/gastrolisis.dm
index 1825ae1e00a..63994362032 100644
--- a/code/datums/diseases/gastrolisis.dm
+++ b/code/datums/diseases/gastrolisis.dm
@@ -8,7 +8,7 @@
viable_mobtypes = list(/mob/living/carbon/human)
stage_prob = 1
disease_flags = CURABLE
- cures = list(/datum/reagent/consumable/sodiumchloride, /datum/reagent/medicine/mutadone)
+ cures = list(/datum/reagent/consumable/salt, /datum/reagent/medicine/mutadone)
/datum/disease/gastrolosis/stage_act()
diff --git a/code/game/objects/items/food/burgers.dm b/code/game/objects/items/food/burgers.dm
index b9cff655182..640efe967a0 100644
--- a/code/game/objects/items/food/burgers.dm
+++ b/code/game/objects/items/food/burgers.dm
@@ -135,7 +135,7 @@
name = "ghost burger"
desc = "Too Spooky!"
icon_state = "ghostburger"
- food_reagents = list(/datum/reagent/consumable/nutriment = 5, /datum/reagent/consumable/nutriment/protein = 4, /datum/reagent/consumable/nutriment/vitamin = 12, /datum/reagent/consumable/sodiumchloride = 5)
+ food_reagents = list(/datum/reagent/consumable/nutriment = 5, /datum/reagent/consumable/nutriment/protein = 4, /datum/reagent/consumable/nutriment/vitamin = 12, /datum/reagent/consumable/salt = 5)
tastes = list("bun" = 2, "ectoplasm" = 4)
foodtypes = GRAIN
alpha = 170
diff --git a/code/game/objects/items/food/frozen.dm b/code/game/objects/items/food/frozen.dm
index dff59b3458b..54c5c7abfb4 100644
--- a/code/game/objects/items/food/frozen.dm
+++ b/code/game/objects/items/food/frozen.dm
@@ -263,7 +263,7 @@
/obj/item/food/popsicle/nogga_black
name = "nogga black"
desc = "A salty licorice icecream recently reintroduced due to all the records of the controversy being lost to time. Those who cannot remember the past are doomed to repeat it."
- food_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/sodiumchloride = 1, /datum/reagent/consumable/cream = 2, /datum/reagent/consumable/vanilla = 1, /datum/reagent/consumable/sugar = 4)
+ food_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/salt = 1, /datum/reagent/consumable/cream = 2, /datum/reagent/consumable/vanilla = 1, /datum/reagent/consumable/sugar = 4)
tastes = list("salty liquorice")
overlay_state = "nogga_black"
diff --git a/code/game/objects/items/food/snacks.dm b/code/game/objects/items/food/snacks.dm
index db20639fb52..4ad5f6482ed 100644
--- a/code/game/objects/items/food/snacks.dm
+++ b/code/game/objects/items/food/snacks.dm
@@ -59,7 +59,7 @@
icon_state = "sosjerky"
desc = "Beef jerky made from the finest space cows."
trash_type = /obj/item/trash/sosjerky
- food_reagents = list(/datum/reagent/consumable/nutriment/protein = 3, /datum/reagent/consumable/sugar = 2, /datum/reagent/consumable/sodiumchloride = 2)
+ food_reagents = list(/datum/reagent/consumable/nutriment/protein = 3, /datum/reagent/consumable/sugar = 2, /datum/reagent/consumable/salt = 2)
junkiness = 25
tastes = list("dried meat" = 1)
foodtypes = JUNKFOOD | MEAT | SUGAR
@@ -76,7 +76,7 @@
icon_state = "chips"
trash_type = /obj/item/trash/chips
bite_consumption = 1
- food_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/sugar = 3, /datum/reagent/consumable/sodiumchloride = 1)
+ food_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/sugar = 3, /datum/reagent/consumable/salt = 1)
junkiness = 20
tastes = list("salt" = 1, "crisps" = 1)
foodtypes = JUNKFOOD | FRIED
diff --git a/code/modules/food_and_drinks/drinks/drinks.dm b/code/modules/food_and_drinks/drinks/drinks.dm
index c64d6212c94..b54f4c45c88 100644
--- a/code/modules/food_and_drinks/drinks/drinks.dm
+++ b/code/modules/food_and_drinks/drinks/drinks.dm
@@ -269,7 +269,7 @@
name = "cup ramen"
desc = "Just add 5ml of water, self heats! A taste that reminds you of your school years. Now new with salty flavour!"
icon_state = "ramen"
- list_reagents = list(/datum/reagent/consumable/dry_ramen = 15, /datum/reagent/consumable/sodiumchloride = 3)
+ list_reagents = list(/datum/reagent/consumable/dry_ramen = 15, /datum/reagent/consumable/salt = 3)
foodtype = GRAIN
isGlass = FALSE
custom_price = 95
diff --git a/code/modules/food_and_drinks/food/condiment.dm b/code/modules/food_and_drinks/food/condiment.dm
index 35fd5d03568..d84dffa1bb4 100644
--- a/code/modules/food_and_drinks/food/condiment.dm
+++ b/code/modules/food_and_drinks/food/condiment.dm
@@ -118,7 +118,7 @@
possible_transfer_amounts = list(1,20) //for clown turning the lid off
amount_per_transfer_from_this = 1
volume = 20
- list_reagents = list(/datum/reagent/consumable/sodiumchloride = 20)
+ list_reagents = list(/datum/reagent/consumable/salt = 20)
fill_icon_thresholds = null
/obj/item/reagent_containers/food/condiment/saltshaker/suicide_act(mob/user)
@@ -135,11 +135,11 @@
if(!proximity)
return
if(isturf(target))
- if(!reagents.has_reagent(/datum/reagent/consumable/sodiumchloride, 2))
+ if(!reagents.has_reagent(/datum/reagent/consumable/salt, 2))
to_chat(user, "You don't have enough salt to make a pile!")
return
user.visible_message("[user] shakes some salt onto [target].", "You shake some salt onto [target].")
- reagents.remove_reagent(/datum/reagent/consumable/sodiumchloride, 2)
+ reagents.remove_reagent(/datum/reagent/consumable/salt, 2)
new/obj/effect/decal/cleanable/food/salt(target)
return
@@ -227,7 +227,7 @@
/datum/reagent/consumable/capsaicin = list("condi_hotsauce", "Hotsauce", "You can almost TASTE the stomach ulcers now!"),
/datum/reagent/consumable/soysauce = list("condi_soysauce", "Soy Sauce", "A salty soy-based flavoring"),
/datum/reagent/consumable/frostoil = list("condi_frostoil", "Coldsauce", "Leaves the tongue numb in its passage"),
- /datum/reagent/consumable/sodiumchloride = list("condi_salt", "Salt Shaker", "Salt. From space oceans, presumably"),
+ /datum/reagent/consumable/salt = list("condi_salt", "Salt Shaker", "Salt. From space oceans, presumably"),
/datum/reagent/consumable/blackpepper = list("condi_pepper", "Pepper Mill", "Often used to flavor food or make people sneeze"),
/datum/reagent/consumable/cornoil = list("condi_cornoil", "Corn Oil", "A delicious oil used in cooking. Made from corn"),
/datum/reagent/consumable/sugar = list("condi_sugar", "Sugar", "Tasty spacey sugar!"),
diff --git a/code/modules/food_and_drinks/food/snacks_other.dm b/code/modules/food_and_drinks/food/snacks_other.dm
index 5b0ab171ed1..9e9caadff1b 100644
--- a/code/modules/food_and_drinks/food/snacks_other.dm
+++ b/code/modules/food_and_drinks/food/snacks_other.dm
@@ -653,8 +653,8 @@
name = "Bran Requests Cereal"
desc = "A dry cereal that satiates your requests for bran. Tastes uniquely like raisins and salt."
icon_state = "bran_requests"
- list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/nutriment/vitamin = 2, /datum/reagent/consumable/sodiumchloride = 5)
- bonus_reagents = list(/datum/reagent/consumable/sodiumchloride = 10)
+ list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/nutriment/vitamin = 2, /datum/reagent/consumable/salt = 5)
+ bonus_reagents = list(/datum/reagent/consumable/salt = 10)
tastes = list("bran" = 4, "raisins" = 3, "salt" = 1)
foodtype = GRAIN | FRUIT | BREAKFAST
value = FOOD_FAST
@@ -802,7 +802,7 @@
icon_state = "boritos"
trash = /obj/item/trash/boritos
bitesize = 2
- list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/cooking_oil = 2, /datum/reagent/consumable/sodiumchloride = 3)
+ list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/cooking_oil = 2, /datum/reagent/consumable/salt = 3)
junkiness = 20
filling_color = "#ECA735"
tastes = list("fried corn" = 1)
diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm
index a3697390a84..4ee54132b6c 100644
--- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm
+++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm
@@ -95,7 +95,7 @@
name = "Ghost burger"
reqs = list(
/obj/item/ectoplasm = 1,
- /datum/reagent/consumable/sodiumchloride = 2,
+ /datum/reagent/consumable/salt = 2,
/obj/item/reagent_containers/food/snacks/bun = 1
)
result = /obj/item/food/burger/ghost
@@ -230,7 +230,7 @@
/datum/crafting_recipe/food/superbiteburger
name = "Super bite burger"
reqs = list(
- /datum/reagent/consumable/sodiumchloride = 5,
+ /datum/reagent/consumable/salt = 5,
/datum/reagent/consumable/blackpepper = 5,
/obj/item/food/meat/steak/plain = 5,
/obj/item/reagent_containers/food/snacks/grown/tomato = 4,
diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm
index 83c4ea1b5c0..ea1f323cb81 100644
--- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm
+++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm
@@ -6,7 +6,7 @@
/datum/crafting_recipe/food/friedegg
name = "Fried egg"
reqs = list(
- /datum/reagent/consumable/sodiumchloride = 1,
+ /datum/reagent/consumable/salt = 1,
/datum/reagent/consumable/blackpepper = 1,
/obj/item/food/egg = 1
)
diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm
index 38499994c3d..a80e6c957f0 100644
--- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm
+++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm
@@ -301,7 +301,7 @@
reqs = list(
/obj/item/popsicle_stick = 1,
/datum/reagent/consumable/blumpkinjuice = 4, //natural source of ammonium chloride
- /datum/reagent/consumable/sodiumchloride = 2,
+ /datum/reagent/consumable/salt = 2,
/datum/reagent/consumable/ice = 2,
/datum/reagent/consumable/cream = 2,
/datum/reagent/consumable/vanilla = 2,
diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm
index 043e904aa58..3994128b634 100644
--- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm
+++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm
@@ -96,7 +96,7 @@
/datum/crafting_recipe/food/spidereggsham
name = "Spider eggs ham"
reqs = list(
- /datum/reagent/consumable/sodiumchloride = 1,
+ /datum/reagent/consumable/salt = 1,
/obj/item/reagent_containers/food/snacks/spidereggs = 1,
/obj/item/food/meat/cutlet/spider = 2
)
@@ -108,7 +108,7 @@
/datum/crafting_recipe/food/cornedbeef
name = "Corned beef"
reqs = list(
- /datum/reagent/consumable/sodiumchloride = 5,
+ /datum/reagent/consumable/salt = 5,
/obj/item/food/meat/steak = 1,
/obj/item/reagent_containers/food/snacks/grown/cabbage = 2
)
diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm
index b40e65dcf99..e4fc0378afe 100644
--- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm
+++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm
@@ -98,7 +98,7 @@
/datum/crafting_recipe/food/baguette
name = "Baguette"
time = 40
- reqs = list(/datum/reagent/consumable/sodiumchloride = 1,
+ reqs = list(/datum/reagent/consumable/salt = 1,
/datum/reagent/consumable/blackpepper = 1,
/obj/item/reagent_containers/food/snacks/pastrybase = 2
)
@@ -198,7 +198,7 @@
/datum/crafting_recipe/food/nachos
name ="Nachos"
reqs = list(
- /datum/reagent/consumable/sodiumchloride = 1,
+ /datum/reagent/consumable/salt = 1,
/obj/item/reagent_containers/food/snacks/tortilla = 1
)
result = /obj/item/reagent_containers/food/snacks/nachos
@@ -207,7 +207,7 @@
/datum/crafting_recipe/food/cheesynachos
name ="Cheesy nachos"
reqs = list(
- /datum/reagent/consumable/sodiumchloride = 1,
+ /datum/reagent/consumable/salt = 1,
/obj/item/reagent_containers/food/snacks/cheesewedge = 1,
/obj/item/reagent_containers/food/snacks/tortilla = 1
)
diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm
index bb7b72b7a7d..787eb7b4c1a 100644
--- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm
+++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm
@@ -526,7 +526,7 @@
time = 15
name = "Cracker"
reqs = list(
- /datum/reagent/consumable/sodiumchloride = 1,
+ /datum/reagent/consumable/salt = 1,
/obj/item/reagent_containers/food/snacks/pastrybase = 1,
)
result = /obj/item/reagent_containers/food/snacks/cracker
@@ -535,7 +535,7 @@
/datum/crafting_recipe/food/chococornet
name = "Choco cornet"
reqs = list(
- /datum/reagent/consumable/sodiumchloride = 1,
+ /datum/reagent/consumable/salt = 1,
/obj/item/reagent_containers/food/snacks/pastrybase = 1,
/obj/item/reagent_containers/food/snacks/chocolatebar = 1
)
diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm
index 43934cd81ea..9e73f2c9381 100644
--- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm
+++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pie.dm
@@ -17,7 +17,7 @@
name = "Meat pie"
reqs = list(
/datum/reagent/consumable/blackpepper = 1,
- /datum/reagent/consumable/sodiumchloride = 1,
+ /datum/reagent/consumable/salt = 1,
/obj/item/reagent_containers/food/snacks/pie/plain = 1,
/obj/item/food/meat/steak/plain = 1
)
diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm
index 2ceccc67fcc..faf1f2d223b 100644
--- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm
+++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm
@@ -38,7 +38,7 @@
name = "Monkeys delight"
reqs = list(
/datum/reagent/consumable/flour = 5,
- /datum/reagent/consumable/sodiumchloride = 1,
+ /datum/reagent/consumable/salt = 1,
/datum/reagent/consumable/blackpepper = 1,
/obj/item/reagent_containers/glass/bowl = 1,
/obj/item/food/monkeycube = 1,
diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm
index a10a039a320..1fb953eabbe 100644
--- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm
+++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm
@@ -287,7 +287,7 @@
name = "Electron Soup"
reqs = list(
/datum/reagent/water = 10,
- /datum/reagent/consumable/sodiumchloride = 5,
+ /datum/reagent/consumable/salt = 5,
/obj/item/reagent_containers/glass/bowl = 1,
/obj/item/reagent_containers/food/snacks/grown/mushroom/jupitercup = 1
)
diff --git a/code/modules/holiday/easter.dm b/code/modules/holiday/easter.dm
index 3bbbe9f1c58..cdfcd83ac7a 100644
--- a/code/modules/holiday/easter.dm
+++ b/code/modules/holiday/easter.dm
@@ -201,7 +201,7 @@
/datum/crafting_recipe/food/scotchegg
name = "Scotch egg"
reqs = list(
- /datum/reagent/consumable/sodiumchloride = 1,
+ /datum/reagent/consumable/salt = 1,
/datum/reagent/consumable/blackpepper = 1,
/obj/item/food/boiledegg = 1,
/obj/item/food/meatball = 1
diff --git a/code/modules/mob/living/carbon/human/species_types/snail.dm b/code/modules/mob/living/carbon/human/species_types/snail.dm
index 3ec3de42366..561faf738fb 100644
--- a/code/modules/mob/living/carbon/human/species_types/snail.dm
+++ b/code/modules/mob/living/carbon/human/species_types/snail.dm
@@ -21,7 +21,7 @@
exotic_blood = /datum/reagent/lube
/datum/species/snail/handle_chemicals(datum/reagent/chem, mob/living/carbon/human/H)
- if(istype(chem,/datum/reagent/consumable/sodiumchloride))
+ if(istype(chem,/datum/reagent/consumable/salt))
H.adjustFireLoss(2)
playsound(H, 'sound/weapons/sear.ogg', 30, TRUE)
H.reagents.remove_reagent(chem.type, REAGENTS_METABOLISM)
diff --git a/code/modules/reagents/chemistry/reagents/food_reagents.dm b/code/modules/reagents/chemistry/reagents/food_reagents.dm
index a6dac613439..b9b6bc70062 100755
--- a/code/modules/reagents/chemistry/reagents/food_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/food_reagents.dm
@@ -347,7 +347,7 @@
M.visible_message("[M] [pick("dry heaves!","coughs!","splutters!")]")
..()
-/datum/reagent/consumable/sodiumchloride
+/datum/reagent/consumable/salt
name = "Table Salt"
description = "A salt made of sodium chloride. Commonly used to season food."
reagent_state = SOLID
@@ -355,7 +355,7 @@
taste_description = "salt"
penetrates_skin = NONE
-/datum/reagent/consumable/sodiumchloride/expose_turf(turf/exposed_turf, reac_volume) //Creates an umbra-blocking salt pile
+/datum/reagent/consumable/salt/expose_turf(turf/exposed_turf, reac_volume) //Creates an umbra-blocking salt pile
. = ..()
if(!istype(exposed_turf) || (reac_volume < 1))
return
diff --git a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm
index 5b01025640a..5f885427f1c 100644
--- a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm
@@ -302,7 +302,7 @@
/datum/reagent/medicine/salglu_solution/overdose_process(mob/living/M)
if(prob(3))
to_chat(M, "You feel salty.")
- holder.add_reagent(/datum/reagent/consumable/sodiumchloride, 1)
+ holder.add_reagent(/datum/reagent/consumable/salt, 1)
holder.remove_reagent(/datum/reagent/medicine/salglu_solution, 0.5)
else if(prob(3))
to_chat(M, "You feel sweet.")
diff --git a/code/modules/reagents/chemistry/recipes/cat2_medicines.dm b/code/modules/reagents/chemistry/recipes/cat2_medicines.dm
index 48a4b590763..c266828f1e1 100644
--- a/code/modules/reagents/chemistry/recipes/cat2_medicines.dm
+++ b/code/modules/reagents/chemistry/recipes/cat2_medicines.dm
@@ -52,7 +52,7 @@
/datum/chemical_reaction/multiver
results = list(/datum/reagent/medicine/c2/multiver = 2)
- required_reagents = list(/datum/reagent/ash = 1, /datum/reagent/consumable/sodiumchloride = 1)
+ required_reagents = list(/datum/reagent/ash = 1, /datum/reagent/consumable/salt = 1)
mix_message = "The mixture yields a fine black powder."
required_temp = 380
diff --git a/code/modules/reagents/chemistry/recipes/medicine.dm b/code/modules/reagents/chemistry/recipes/medicine.dm
index 9cdb340250e..0b940900c72 100644
--- a/code/modules/reagents/chemistry/recipes/medicine.dm
+++ b/code/modules/reagents/chemistry/recipes/medicine.dm
@@ -28,7 +28,7 @@
/datum/chemical_reaction/salglu_solution
results = list(/datum/reagent/medicine/salglu_solution = 3)
- required_reagents = list(/datum/reagent/consumable/sodiumchloride = 1, /datum/reagent/water = 1, /datum/reagent/consumable/sugar = 1)
+ required_reagents = list(/datum/reagent/consumable/salt = 1, /datum/reagent/water = 1, /datum/reagent/consumable/sugar = 1)
/datum/chemical_reaction/mine_salve
results = list(/datum/reagent/medicine/mine_salve = 3)
@@ -151,7 +151,7 @@
/datum/chemical_reaction/granibitaluri
results = list(/datum/reagent/medicine/granibitaluri = 3)
- required_reagents = list(/datum/reagent/consumable/sodiumchloride = 1, /datum/reagent/carbon = 1, /datum/reagent/toxin/acid = 1)
+ required_reagents = list(/datum/reagent/consumable/salt = 1, /datum/reagent/carbon = 1, /datum/reagent/toxin/acid = 1)
required_catalysts = list(/datum/reagent/iron = 5)
///medical stacks
diff --git a/code/modules/reagents/chemistry/recipes/others.dm b/code/modules/reagents/chemistry/recipes/others.dm
index 914113a1ab6..79eb862646f 100644
--- a/code/modules/reagents/chemistry/recipes/others.dm
+++ b/code/modules/reagents/chemistry/recipes/others.dm
@@ -28,7 +28,7 @@
required_reagents = list(/datum/reagent/consumable/cornoil = 3, /datum/reagent/toxin/acid = 1)
/datum/chemical_reaction/sodiumchloride
- results = list(/datum/reagent/consumable/sodiumchloride = 3)
+ results = list(/datum/reagent/consumable/salt = 3)
required_reagents = list(/datum/reagent/water = 1, /datum/reagent/sodium = 1, /datum/reagent/chlorine = 1)
/datum/chemical_reaction/stable_plasma
diff --git a/code/modules/research/xenobiology/vatgrowing/samples/cell_lines/common.dm b/code/modules/research/xenobiology/vatgrowing/samples/cell_lines/common.dm
index 0203790c3ac..f3fbf7a245d 100644
--- a/code/modules/research/xenobiology/vatgrowing/samples/cell_lines/common.dm
+++ b/code/modules/research/xenobiology/vatgrowing/samples/cell_lines/common.dm
@@ -365,7 +365,7 @@
/datum/reagent/liquidgibs = 1)
suppressive_reagents = list(
- /datum/reagent/consumable/sodiumchloride = -3,
+ /datum/reagent/consumable/salt = -3,
/datum/reagent/medicine/c2/syriniver = -2)
virus_suspectibility = 0.5
resulting_atoms = list(/mob/living/simple_animal/hostile/vatbeast = 1)