diff --git a/Content.Client/Parallax/ParallaxManager.cs b/Content.Client/Parallax/ParallaxManager.cs index 154f2e117b..9ff1bc08ed 100644 --- a/Content.Client/Parallax/ParallaxManager.cs +++ b/Content.Client/Parallax/ParallaxManager.cs @@ -18,7 +18,7 @@ using SixLabors.ImageSharp.PixelFormats; namespace Content.Client.Parallax { - internal sealed class ParallaxManager : IParallaxManager, IPostInjectInit + internal sealed class ParallaxManager : IParallaxManager { [Dependency] private readonly IResourceCache _resourceCache = default!; [Dependency] private readonly ILogManager _logManager = default!; @@ -119,11 +119,5 @@ namespace Content.Client.Parallax OnTextureLoaded?.Invoke(ParallaxTexture); } - - public void PostInject() - { - _configurationManager.RegisterCVar("parallax.enabled", true); - _configurationManager.RegisterCVar("parallax.debug", false); - } } }