From 1b77f189128227ff0108a477ef4d626093385df3 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto Date: Tue, 1 Jun 2021 13:02:57 +0200 Subject: [PATCH] Don't dirty the node groups on snapgrid changed. --- Content.Server/GameObjects/EntitySystems/NodeGroupSystem.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Content.Server/GameObjects/EntitySystems/NodeGroupSystem.cs b/Content.Server/GameObjects/EntitySystems/NodeGroupSystem.cs index 4577aecce0..368b4a6519 100644 --- a/Content.Server/GameObjects/EntitySystems/NodeGroupSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/NodeGroupSystem.cs @@ -23,7 +23,6 @@ namespace Content.Server.GameObjects.EntitySystems foreach (var node in component.Nodes.Values) { node.OnSnapGridMove(); - AddDirtyNodeGroup(node.NodeGroup); } }