From beec816357946ba9e25bae1c858bbfd84e59ed0e Mon Sep 17 00:00:00 2001 From: Tornado Tech <54727692+Tornado-Technology@users.noreply.github.com> Date: Sun, 11 Aug 2024 23:13:06 +1000 Subject: [PATCH] Lamo --- .../Components/CP14BiomeSpawnerComponent.cs | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 Content.Server/_CP14/BiomeSpawner/Components/CP14BiomeSpawnerComponent.cs diff --git a/Content.Server/_CP14/BiomeSpawner/Components/CP14BiomeSpawnerComponent.cs b/Content.Server/_CP14/BiomeSpawner/Components/CP14BiomeSpawnerComponent.cs deleted file mode 100644 index ccdf909849..0000000000 --- a/Content.Server/_CP14/BiomeSpawner/Components/CP14BiomeSpawnerComponent.cs +++ /dev/null @@ -1,22 +0,0 @@ -/* - * All right reserved to CrystallPunk. - * - * BUT this file is sublicensed under MIT License - * - */ - -using Content.Server._CP14.BiomeSpawner.EntitySystems; -using Content.Shared.Parallax.Biomes; -using Robust.Shared.Prototypes; - -namespace Content.Server._CP14.BiomeSpawner.Components; - -/// -/// fills the tile in which it is located with the contents of the biome. Includes: tile, decals and entities -/// -[RegisterComponent, Access(typeof(CP14BiomeSpawnerSystem))] -public sealed partial class CP14BiomeSpawnerComponent : Component -{ - [DataField] - public ProtoId Biome = "Grasslands"; -}