]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix chem sources in guidebook (#23987)
authorNemanja <98561806+EmoGarbage404@users.noreply.github.com>
Sat, 13 Jan 2024 07:16:47 +0000 (02:16 -0500)
committerGitHub <noreply@github.com>
Sat, 13 Jan 2024 07:16:47 +0000 (18:16 +1100)
* Fix chem sources in guidebook

* shabooya

Content.Shared/Chemistry/Components/SolutionManager/SolutionContainerManagerComponent.cs

index fe62555f0dca4f56ecf6278a4339fc86a868c5de..4000a29021e352184d3a3a8845c681c0182a6d4c 100644 (file)
@@ -31,6 +31,6 @@ public sealed partial class SolutionContainerManagerComponent : Component
     /// <remarks>
     /// Should be null after mapinit.
     /// </remarks>
-    [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<string, Solution>? Solutions = null;
 }