Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Sh1ntra committed May 27, 2024
1 parent b045493 commit 20b5d35
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System.Linq;
using System.Numerics;
using Content.Server.Worldgen.Components;
using Content.Server.Worldgen.Components.Debris;
using Content.Server.Worldgen.Systems.GC;
using Content.Server.Worldgen.Tools;
using JetBrains.Annotations;
Expand All @@ -10,7 +9,8 @@
using Robust.Shared.Map.Components;
using Robust.Shared.Random;
using Robust.Shared.Utility;
using Content.Server._NF.Worldgen.Components.Debris; // Frontier
using Content.Server.Worldgen.Components.Debris;
using Content.Server._NF.Worldgen.Components.Debris;

namespace Content.Server.Worldgen.Systems.Debris;

Expand Down Expand Up @@ -229,7 +229,7 @@ private void OnChunkLoaded(EntityUid uid, DebrisFeaturePlacerControllerComponent
owned.OwningController = uid;
owned.LastKey = point;

EnsureComp<_NF.Worldgen.Components.Debris.SpaceDebrisComponent>(ent); // Frontier
EnsureComp<SpaceDebrisComponent>(ent); // Frontier
}

if (failures > 0)
Expand Down

0 comments on commit 20b5d35

Please sign in to comment.