Files
tbd-station-14/Content.Shared/Kitchen/GetSecretRecipesEvent.cs
themias 78201101d6 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
2024-09-02 15:49:00 +02:00

11 lines
257 B
C#

namespace Content.Shared.Kitchen;
/// <summary>
/// This returns a list of recipes not found in the main list of available recipes.
/// </summary>
[ByRefEvent]
public struct GetSecretRecipesEvent()
{
public List<FoodRecipePrototype> Recipes = new();
}