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;
}