Autodoc Fix (#4698)

Autodoc Functions once more
This commit is contained in:
Coryn 2025-11-20 05:07:17 +01:00 committed by GitHub
parent f088295730
commit 6beb38d1ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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<SharedAutodocSystem>();
_owner = owner;
OnClose += () =>