From 0e45c63d2289387cbe3abc85665225fb2cfb114e Mon Sep 17 00:00:00 2001
From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com>
Date: Sat, 13 Jan 2024 02:16:47 -0500
Subject: [PATCH] Fix chem sources in guidebook (#23987)
* Fix chem sources in guidebook
* shabooya
---
.../SolutionManager/SolutionContainerManagerComponent.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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;
}
--
2.51.2