From 088fa2013dd38c7cad31f2a91075c2315a164419 Mon Sep 17 00:00:00 2001 From: Winkarst-cpu <74284083+Winkarst-cpu@users.noreply.github.com> Date: Tue, 9 Sep 2025 22:00:41 +0300 Subject: [PATCH] Cleanup: Remove unnecessary ``IEntityManager`` reference from the ``EmotesUIController`` (#40243) Cleanup --- .../UserInterface/Systems/Emotes/EmotesUIController.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Content.Client/UserInterface/Systems/Emotes/EmotesUIController.cs b/Content.Client/UserInterface/Systems/Emotes/EmotesUIController.cs index 8d74e2efe7..c1bb5b5630 100644 --- a/Content.Client/UserInterface/Systems/Emotes/EmotesUIController.cs +++ b/Content.Client/UserInterface/Systems/Emotes/EmotesUIController.cs @@ -18,7 +18,6 @@ namespace Content.Client.UserInterface.Systems.Emotes; [UsedImplicitly] public sealed class EmotesUIController : UIController, IOnStateChanged { - [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; @@ -189,6 +188,6 @@ public sealed class EmotesUIController : UIController, IOnStateChanged