From 0d0ea2c35cd34dd9a0b68a4603d24e871bc4085a Mon Sep 17 00:00:00 2001 From: MiraHell <42539014+MiraHell@users.noreply.github.com> Date: Fri, 26 Jul 2024 17:04:16 +0300 Subject: [PATCH] some naming --- Content.Server/Bed/Cryostorage/CryostorageSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs index a3d52a76fdbdc0..7081e10cae680c 100644 --- a/Content.Server/Bed/Cryostorage/CryostorageSystem.cs +++ b/Content.Server/Bed/Cryostorage/CryostorageSystem.cs @@ -59,7 +59,7 @@ public override void Initialize() SubscribeLocalEvent(OnBeforeUIOpened); SubscribeLocalEvent(OnRemoveItemBuiMessage); - SubscribeLocalEvent(OnCryopodLeaveAction); + SubscribeLocalEvent(OnCryopodGhostAction); SubscribeLocalEvent(OnPlayerSpawned); SubscribeLocalEvent(OnMindRemoved); @@ -375,7 +375,7 @@ public override void Update(float frameTime) } // end 220 cryo department record // start 220 cryo action - public void OnCryopodLeaveAction(Entity ent, ref CryopodGhostActionEvent args) + public void OnCryopodGhostAction(Entity ent, ref CryopodGhostActionEvent args) { if (TryComp(args.Performer, out var contained)) contained.GracePeriodEndTime = Timing.CurTime;