* Toilet Draft * fixes * toilets now have secret stash to place items in cistern. * fixes * plungers now unblock toilets. * fix sprite * new sprites and fix * fixes * improve seat sprites. * fix * removed visualisersystem changed to genericvisualizers * flush sound for toilets and copyright for toilet sprites. * fix atrributions * fixes * fix datafield flushtime * sprite improvements * fixes * multiple changes * fix * fix * fixes remove vv * moved stash related functions to secret stash system from toilet. * fix * fix * changes for recent review. * fix * fix
19 lines
518 B
C#
19 lines
518 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Plunger.Components
|
|
{
|
|
/// <summary>
|
|
/// Allows entity to unblock target entity with PlungerUseComponent.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent,AutoGenerateComponentState]
|
|
public sealed partial class PlungerComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Duration of plunger doafter event.
|
|
/// </summary>
|
|
[DataField]
|
|
[AutoNetworkedField]
|
|
public float PlungeDuration = 2f;
|
|
}
|
|
}
|