StasisBedComponent.cs 475 B

12345678910111213
  1. namespace Content.Server.Bed.Components
  2. {
  3. [RegisterComponent]
  4. public sealed partial class StasisBedComponent : Component
  5. {
  6. /// <summary>
  7. /// What the metabolic update rate will be multiplied by (higher = slower metabolism)
  8. /// </summary>
  9. [ViewVariables(VVAccess.ReadOnly)] // Writing is is not supported. ApplyMetabolicMultiplierEvent needs to be refactored first
  10. [DataField]
  11. public float Multiplier = 10f;
  12. }
  13. }