From d7f5de97da9e60724e7a7d72b30239d25f83d136 Mon Sep 17 00:00:00 2001 From: Winter Flare <7543955+Owai-Seek@users.noreply.github.com> Date: Sun, 12 Jul 2020 22:34:32 -0400 Subject: [PATCH] Oops. --- code/modules/food_and_drinks/food/snacks.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/food_and_drinks/food/snacks.dm b/code/modules/food_and_drinks/food/snacks.dm index 58fa37e6a8..de264ff0e4 100644 --- a/code/modules/food_and_drinks/food/snacks.dm +++ b/code/modules/food_and_drinks/food/snacks.dm @@ -33,8 +33,8 @@ Crafting Recipe (See files in code/modules/food_and_drinks/recipes/tablecraft/) /datum/crafting_recipe/food/nachos name ="Salted Corn Chips" //Name that displays in the Crafting UI reqs = list( //The list of ingredients to make the food. - /obj/item/reagent_containers/food/snacks/tortilla = 1 - /datum/reagent/consumable/sodiumchloride = 1, //As a note, reagents and non-food items don't get added to the food. If you + /obj/item/reagent_containers/food/snacks/tortilla = 1, + /datum/reagent/consumable/sodiumchloride = 1 //As a note, reagents and non-food items don't get added to the food. If you ) ^^want the reagents, make sure the food item has it listed under bonus_reagents. result = /obj/item/reagent_containers/food/snacks/saltedcornchips //Resulting object. subcategory = CAT_MISCFOOD //Subcategory the food falls under in the Food Tab of the crafting menu.