From 3338a4bf5401dbc54e9d274c302908341c7860bd Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Thu, 15 Jun 2023 14:15:39 +1200 Subject: [PATCH] Change PvsOverrideSystem captialization (#17314) --- Content.Server/Explosion/EntitySystems/ExplosionSystem.cs | 2 +- Content.Server/Singularity/EntitySystems/SingularitySystem.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index 1cc42ccf47..39214bbe06 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -42,7 +42,7 @@ public sealed partial class ExplosionSystem : EntitySystem [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly IChatManager _chat = default!; [Dependency] private readonly ThrowingSystem _throwingSystem = default!; - [Dependency] private readonly PVSOverrideSystem _pvsSys = default!; + [Dependency] private readonly PvsOverrideSystem _pvsSys = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; /// diff --git a/Content.Server/Singularity/EntitySystems/SingularitySystem.cs b/Content.Server/Singularity/EntitySystems/SingularitySystem.cs index 2b6ae31c6c..a30d8bb02b 100644 --- a/Content.Server/Singularity/EntitySystems/SingularitySystem.cs +++ b/Content.Server/Singularity/EntitySystems/SingularitySystem.cs @@ -24,7 +24,7 @@ public sealed class SingularitySystem : SharedSingularitySystem #region Dependencies [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly PVSOverrideSystem _pvs = default!; + [Dependency] private readonly PvsOverrideSystem _pvs = default!; #endregion Dependencies ///