* 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.
16 lines
503 B
C#
16 lines
503 B
C#
namespace Content.Server.Chemistry.Components.DeleteOnSolutionEmptyComponent
|
|
{
|
|
/// <summary>
|
|
/// Component that removes an item when a specific solution in it becomes empty.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class DeleteOnSolutionEmptyComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The name of the solution of which to check emptiness
|
|
/// </summary>
|
|
[DataField("solution")]
|
|
public string Solution = string.Empty;
|
|
}
|
|
}
|