diff --git a/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs b/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs index 55014bab07..fa9b20db73 100644 --- a/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs +++ b/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs @@ -42,7 +42,7 @@ namespace Content.Server.Bed.Sleep _actionsSystem.AddAction(uid, ref component.WakeAction, WakeActionId, uid); // TODO remove hardcoded time. - _actionsSystem.SetCooldown(component.WakeAction, _gameTiming.CurTime, _gameTiming.CurTime + TimeSpan.FromSeconds(2f)); + _actionsSystem.SetCooldown(component.WakeAction, _gameTiming.CurTime, _gameTiming.CurTime + TimeSpan.FromSeconds(15f)); // WD EDIT } private void OnShutdown(EntityUid uid, SleepingComponent component, ComponentShutdown args) @@ -88,4 +88,4 @@ public sealed partial class WakeActionEvent : InstantActionEvent; public sealed class SleepStateChangedEvent(bool fellAsleep) : EntityEventArgs { public bool FellAsleep = fellAsleep; -} \ No newline at end of file +}