diff --git a/Content.Server/Placement/SpawnHelpers.cs b/Content.Server/Placement/SpawnHelpers.cs deleted file mode 100644 index e60d365d3e..0000000000 --- a/Content.Server/Placement/SpawnHelpers.cs +++ /dev/null @@ -1,25 +0,0 @@ -using Robust.Server.Interfaces.GameObjects; -using Robust.Shared.IoC; -using Robust.Shared.Map; - -namespace Content.Server.Placement -{ - /// - /// Helper function for spawning more complex multi-entity structures - /// - public static class SpawnHelpers - { - /// - /// Spawns a spotlight ground turret that will track any living entities in range. - /// - /// - public static void SpawnLightTurret(EntityCoordinates position) - { - var entMan = IoCManager.Resolve(); - var tBase = entMan.SpawnEntity("TurretBase", position); - - var tTop = entMan.SpawnEntity("TurretTopLight", position); - tTop.Transform.AttachParent(tBase); - } - } -}