Add Donk Co. microwave board to Combat Bakery Kit (#31239)

* Add special microwave board to Combat Bakery Kit

* use event instead of trycomp

* make the board sus

* add instructions note

* embarrassing typo

* Add functionality to Donk Co. microwave instead

* update note
This commit is contained in:
themias
2024-09-02 09:49:00 -04:00
committed by GitHub
parent ef1fadf275
commit 78201101d6
12 changed files with 115 additions and 5 deletions

View File

@@ -14,7 +14,8 @@ namespace Content.Shared.Kitchen
Recipes = new List<FoodRecipePrototype>();
foreach (var item in _prototypeManager.EnumeratePrototypes<FoodRecipePrototype>())
{
Recipes.Add(item);
if (!item.SecretRecipe)
Recipes.Add(item);
}
Recipes.Sort(new RecipeComparer());