From 49151cd4cd4f2d66157c739e83d21d7004c35b0e Mon Sep 17 00:00:00 2001 From: Acruid Date: Tue, 16 Nov 2021 20:25:28 -0800 Subject: [PATCH] Removes the last use of EntitySystem.EntitySystemManager in content. --- Content.Server/AI/Pathfinding/ServerPathfindingDebugSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/AI/Pathfinding/ServerPathfindingDebugSystem.cs b/Content.Server/AI/Pathfinding/ServerPathfindingDebugSystem.cs index 875a683994..ae2092b854 100644 --- a/Content.Server/AI/Pathfinding/ServerPathfindingDebugSystem.cs +++ b/Content.Server/AI/Pathfinding/ServerPathfindingDebugSystem.cs @@ -95,7 +95,7 @@ namespace Content.Server.AI.Pathfinding private void DispatchGraph(SharedAiDebug.RequestPathfindingGraphMessage message) { - var pathfindingSystem = EntitySystemManager.GetEntitySystem(); + var pathfindingSystem = EntityManager.EntitySysManager.GetEntitySystem(); var mapManager = IoCManager.Resolve(); var result = new Dictionary>();