This commit is contained in:
Kara
2022-10-21 01:54:18 -07:00
committed by GitHub
parent 8a4142cceb
commit 169ba3106b
3 changed files with 5 additions and 1 deletions

View File

@@ -25,6 +25,7 @@ using Content.Shared.Chemistry.Components;
using Content.Shared.Chemistry.Dispenser;
using Content.Shared.Gravity;
using Content.Shared.Lathe;
using Content.Shared.Localizations;
using Content.Shared.Markers;
using Robust.Client;
using Robust.Client.Graphics;
@@ -70,6 +71,7 @@ namespace Content.Client.Entry
[Dependency] private readonly GhostKickManager _ghostKick = default!;
[Dependency] private readonly ExtendedDisconnectInformationManager _extendedDisconnectInformation = default!;
[Dependency] private readonly PlayTimeTrackingManager _playTimeTracking = default!;
[Dependency] private readonly ContentLocalizationManager _contentLoc = default!;
public const int NetBufferSizeOverride = 2;
@@ -91,6 +93,7 @@ namespace Content.Client.Entry
IoCManager.Resolve<IConfigurationManager>().OverrideDefault(CVars.NetBufferSize, NetBufferSizeOverride);
#endif
_contentLoc.Initialize();
_componentFactory.DoAutoRegistrations();
_componentFactory.IgnoreMissingComponents();