From 0a42834dbe5d89dc3e9f9aa79df87cc74a1d9f6e Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Wed, 17 Jul 2024 16:32:58 +0300 Subject: [PATCH] move biomespawners --- .../{ => Procedural}/BiomeSpawner/CP14BiomeSpawnerComponent.cs | 2 +- .../{ => Procedural}/BiomeSpawner/CP14BiomeSpawnerSystem.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename Content.Server/_CP14/{ => Procedural}/BiomeSpawner/CP14BiomeSpawnerComponent.cs (92%) rename Content.Server/_CP14/{ => Procedural}/BiomeSpawner/CP14BiomeSpawnerSystem.cs (98%) diff --git a/Content.Server/_CP14/BiomeSpawner/CP14BiomeSpawnerComponent.cs b/Content.Server/_CP14/Procedural/BiomeSpawner/CP14BiomeSpawnerComponent.cs similarity index 92% rename from Content.Server/_CP14/BiomeSpawner/CP14BiomeSpawnerComponent.cs rename to Content.Server/_CP14/Procedural/BiomeSpawner/CP14BiomeSpawnerComponent.cs index ff377c9991..7e8c34c80d 100644 --- a/Content.Server/_CP14/BiomeSpawner/CP14BiomeSpawnerComponent.cs +++ b/Content.Server/_CP14/Procedural/BiomeSpawner/CP14BiomeSpawnerComponent.cs @@ -10,7 +10,7 @@ using Content.Shared.Parallax.Biomes; using Robust.Shared.Prototypes; -namespace Content.Server._CP14.BiomeSpawner; +namespace Content.Server._CP14.Procedural.BiomeSpawner; /// /// fills the tile in which it is located with the contents of the biome. Includes: tile, decals and entities diff --git a/Content.Server/_CP14/BiomeSpawner/CP14BiomeSpawnerSystem.cs b/Content.Server/_CP14/Procedural/BiomeSpawner/CP14BiomeSpawnerSystem.cs similarity index 98% rename from Content.Server/_CP14/BiomeSpawner/CP14BiomeSpawnerSystem.cs rename to Content.Server/_CP14/Procedural/BiomeSpawner/CP14BiomeSpawnerSystem.cs index 6f08aae1f4..10d12edcc7 100644 --- a/Content.Server/_CP14/BiomeSpawner/CP14BiomeSpawnerSystem.cs +++ b/Content.Server/_CP14/Procedural/BiomeSpawner/CP14BiomeSpawnerSystem.cs @@ -17,7 +17,7 @@ using Robust.Shared.Map.Components; using Robust.Shared.Prototypes; using Robust.Shared.Random; -namespace Content.Server._CP14.BiomeSpawner; +namespace Content.Server._CP14.Procedural.BiomeSpawner; public sealed class CP14BiomeSpawnerSystem : EntitySystem {