From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com>
Date: Sat, 13 Jan 2024 07:16:47 +0000 (-0500)
Subject: Fix chem sources in guidebook (#23987)
X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=0e45c63d2289387cbe3abc85665225fb2cfb114e;p=space-station-14.git
Fix chem sources in guidebook (#23987)
* Fix chem sources in guidebook
* shabooya
---
diff --git a/Content.Shared/Chemistry/Components/SolutionManager/SolutionContainerManagerComponent.cs b/Content.Shared/Chemistry/Components/SolutionManager/SolutionContainerManagerComponent.cs
index fe62555f0d..4000a29021 100644
--- a/Content.Shared/Chemistry/Components/SolutionManager/SolutionContainerManagerComponent.cs
+++ b/Content.Shared/Chemistry/Components/SolutionManager/SolutionContainerManagerComponent.cs
@@ -31,6 +31,6 @@ public sealed partial class SolutionContainerManagerComponent : Component
///
/// Should be null after mapinit.
///
- [DataField(serverOnly: true)] // Needs to be serverOnly or these will get loaded on the client and never cleared. Can be reworked when entity spawning is predicted.
+ [DataField, AutoNetworkedField]
public Dictionary? Solutions = null;
}