Files
tbd-station-14/Content.Server/Nutrition/Components/TrashOnSolutionEmptyComponent.cs
Psychpsyo 6a18bdc023 Soapy Water & Edible Soap (#20364)
* soap reagent and soapy water

* make soapy water recognizable

* Fix tile cleaning bug

CleanDecalsReaction was able to take more than the reactVolume it was given.

* make soapy water an evaporating reagent

* Tile reactions when mopping

* Fix indescribably soap flavor

* Adjust soap flavours

Soap and soapy water now taste clean and syndie soap tastes like punishment.

* Better soap numbers & DeleteOnSolutionEmpty

* Changed TrashOnEmpty to TrashOnSolutionEmpty

* Last TrashOnSolutionEmpty change

* Fix merged code not compiling

* Requested changes.
2023-10-31 13:39:12 -07:00

17 lines
564 B
C#

namespace Content.Server.Nutrition.Components
{
/// <summary>
/// Component that tags solution containers as trash when their contents have been emptied.
/// Used for things like used ketchup packets or used syringes.
/// </summary>
[RegisterComponent]
public sealed partial class TrashOnSolutionEmptyComponent : Component
{
/// <summary>
/// The name of the solution of which to check emptiness
/// </summary>
[DataField("solution")]
public string Solution { get; set; } = string.Empty;
}
}