Piping Unit test fixes (#3471)
* PipeNetDevice on piping prototypes * client component ignore * NodeContainer OnRemove bugfix * Moves some NodeContainer code from OnRemove to Shutdown * yaml indentation fix
This commit is contained in:
@@ -109,9 +109,9 @@ namespace Content.Server.GameObjects.Components.NodeContainer.Nodes
|
||||
UpdateAppearance();
|
||||
}
|
||||
|
||||
public override void OnContainerRemove()
|
||||
public override void OnContainerShutdown()
|
||||
{
|
||||
base.OnContainerRemove();
|
||||
base.OnContainerShutdown();
|
||||
UpdateAdjacentConnectedDirections();
|
||||
}
|
||||
|
||||
@@ -173,8 +173,10 @@ namespace Content.Server.GameObjects.Components.NodeContainer.Nodes
|
||||
/// </summary>
|
||||
private IEnumerable<PipeNode> PipesInDirection(PipeDirection pipeDir)
|
||||
{
|
||||
var entities = Owner.GetComponent<SnapGridComponent>()
|
||||
.GetInDir(pipeDir.ToDirection());
|
||||
if (!Owner.TryGetComponent(out SnapGridComponent? grid))
|
||||
yield break;
|
||||
|
||||
var entities = grid.GetInDir(pipeDir.ToDirection());
|
||||
|
||||
foreach (var entity in entities)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user