From d5cf2f28c0d06aa8d961036eba326ef013f88f99 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Thu, 23 Mar 2023 17:41:42 +1100 Subject: [PATCH] Fix double FTL started event (#14788) --- .../Shuttles/Systems/ShuttleSystem.FasterThanLight.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index 75ddccce48..f68533d4bb 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -220,9 +220,6 @@ public sealed partial class ShuttleSystem SoundSystem.Play(_startupSound.GetSound(), Filter.Empty().AddInRange(Transform(uid).MapPosition, GetSoundRange(component.Owner)), _startupSound.Params); // Make sure the map is setup before we leave to avoid pop-in (e.g. parallax). SetupHyperspace(); - - var ev = new FTLStartedEvent(); - RaiseLocalEvent(uid, ref ev); return true; }