From 10fa6ff4af32f0ae59ed01f243164fcf6b31f965 Mon Sep 17 00:00:00 2001 From: Kowlin <10947836+Kowlin@users.noreply.github.com> Date: Thu, 3 Jul 2025 16:44:37 +0200 Subject: [PATCH] Fix world generation (#38713) * Fix world generation * Remove unused impoty --- Content.Server/Gateway/Systems/GatewayGeneratorSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Gateway/Systems/GatewayGeneratorSystem.cs b/Content.Server/Gateway/Systems/GatewayGeneratorSystem.cs index 7f4bdccf2e..5d08247b56 100644 --- a/Content.Server/Gateway/Systems/GatewayGeneratorSystem.cs +++ b/Content.Server/Gateway/Systems/GatewayGeneratorSystem.cs @@ -110,7 +110,7 @@ public sealed class GatewayGeneratorSystem : EntitySystem }; AddComp(mapUid, restricted); - _biome.EnsurePlanet(mapUid, _protoManager.Index("BiomeContinental"), seed); + _biome.EnsurePlanet(mapUid, _protoManager.Index("BiomeGrasslands"), seed); var grid = Comp(mapUid); -- 2.51.2