From 58f5c8e2b5ba638787b50c29c426d104394d2487 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Wed, 21 Oct 2020 19:25:08 +1100 Subject: [PATCH] Remove this thing (#2346) Co-authored-by: Metal Gear Sloth --- Content.Server/Placement/SpawnHelpers.cs | 25 ------------------------ 1 file changed, 25 deletions(-) delete mode 100644 Content.Server/Placement/SpawnHelpers.cs 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); - } - } -}