From 9acead4236066338fee1a2ec5721d61743577712 Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Sat, 17 May 2025 17:00:32 +0200 Subject: [PATCH] Network SolutionScanner (#37541) * init * doc --- .../Chemistry/Components/SolutionScannerComponent.cs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Content.Shared/Chemistry/Components/SolutionScannerComponent.cs b/Content.Shared/Chemistry/Components/SolutionScannerComponent.cs index a342cde2dd..ad5fa06958 100644 --- a/Content.Shared/Chemistry/Components/SolutionScannerComponent.cs +++ b/Content.Shared/Chemistry/Components/SolutionScannerComponent.cs @@ -1,7 +1,11 @@ +using Robust.Shared.GameStates; + namespace Content.Shared.Chemistry.Components; -[RegisterComponent] -public sealed partial class SolutionScannerComponent : Component -{ -} +/// +/// Allows an entity to examine reagents inside of containers, puddles and similiar via the examine verb. +/// Works when added either directly to an entity or to piece of clothing worn by that entity. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class SolutionScannerComponent : Component; -- 2.51.2