diff --git a/Content.Server/GameObjects/Components/ComputerComponent.cs b/Content.Server/GameObjects/Components/ComputerComponent.cs index f22a6fc094..9ab1995b1b 100644 --- a/Content.Server/GameObjects/Components/ComputerComponent.cs +++ b/Content.Server/GameObjects/Components/ComputerComponent.cs @@ -1,3 +1,4 @@ +using Content.Server.GameObjects.Components.Construction; using Content.Server.GameObjects.Components.Power.ApcNetComponents; using Content.Shared.GameObjects.Components; using JetBrains.Annotations; @@ -87,6 +88,9 @@ namespace Content.Server.GameObjects.Components if(!container.Insert(board)) Logger.Warning($"Couldn't insert board {board} to computer {Owner}!"); + + if (Owner.TryGetComponent(out ConstructionComponent construction)) + construction.AddContainer("board"); } public void MapInit()