Prevent stacking pipes (#28308)

* prevent stacking pipes

* access

* notafet review

* notafet review pt. 2

* not the actual fix
This commit is contained in:
Nemanja
2024-05-27 18:37:27 -04:00
committed by GitHub
parent 984af3584f
commit 44b93e68ee
9 changed files with 170 additions and 23 deletions

View File

@@ -0,0 +1,9 @@
using Content.Server.Atmos.EntitySystems;
namespace Content.Server.Atmos.Components;
/// <summary>
/// This is used for restricting anchoring pipes so that they do not overlap.
/// </summary>
[RegisterComponent, Access(typeof(PipeRestrictOverlapSystem))]
public sealed partial class PipeRestrictOverlapComponent : Component;