From 6beb38d1ba3bfdfef81baed2e8332295d21b0d00 Mon Sep 17 00:00:00 2001 From: Coryn Date: Thu, 20 Nov 2025 05:07:17 +0100 Subject: [PATCH] Autodoc Fix (#4698) Autodoc Functions once more --- Content.Client/_Shitmed/Autodoc/AutodocWindow.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Client/_Shitmed/Autodoc/AutodocWindow.xaml.cs b/Content.Client/_Shitmed/Autodoc/AutodocWindow.xaml.cs index b676e96475..6d4baa8970 100644 --- a/Content.Client/_Shitmed/Autodoc/AutodocWindow.xaml.cs +++ b/Content.Client/_Shitmed/Autodoc/AutodocWindow.xaml.cs @@ -27,8 +27,8 @@ public sealed partial class AutodocWindow : FancyWindow [Dependency] private readonly IPlayerManager _player = default!; [Dependency] private readonly ISerializationManager _serMan = default!; [Dependency] private readonly ILogManager _logMan = default!; - [Dependency] private readonly SharedAutodocSystem _autodoc = default!; + private SharedAutodocSystem _autodoc; private EntityUid _owner; private bool _active; private int _programCount = 0; @@ -52,7 +52,7 @@ public sealed partial class AutodocWindow : FancyWindow IoCManager.InjectDependencies(this); _sawmill = _logMan.GetSawmill("autodoc-ui"); - + _autodoc = entMan.System(); _owner = owner; OnClose += () =>