diff --git a/Content.Server/Construction/ConstructionSystem.Guided.cs b/Content.Server/Construction/ConstructionSystem.Guided.cs index df2bba80bc..11132a16cb 100644 --- a/Content.Server/Construction/ConstructionSystem.Guided.cs +++ b/Content.Server/Construction/ConstructionSystem.Guided.cs @@ -95,7 +95,9 @@ namespace Content.Server.Construction preventStepExamine |= condition.DoExamine(args); } - if (preventStepExamine) return; + if (!preventStepExamine && component.StepIndex < edge.Steps.Count) + edge.Steps[component.StepIndex].DoExamine(args); + return; } }