diff --git a/Content.Server/Tabletop/TabletopSystem.Draggable.cs b/Content.Server/Tabletop/TabletopSystem.Draggable.cs index a12292dc6c..773f009dc1 100644 --- a/Content.Server/Tabletop/TabletopSystem.Draggable.cs +++ b/Content.Server/Tabletop/TabletopSystem.Draggable.cs @@ -55,7 +55,6 @@ namespace Content.Server.Tabletop var transform = EntityManager.GetComponent(movedEntity.Uid); var entityCoordinates = new EntityCoordinates(_mapManager.GetMapEntityId(transform.MapID), msg.Coordinates.Position); transform.Coordinates = entityCoordinates; - movedEntity.Dirty(); } private void OnDraggingPlayerChanged(TabletopDraggingPlayerChangedEvent msg) diff --git a/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs index 9b87acdcae..c8f8583d97 100644 --- a/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs @@ -104,7 +104,6 @@ namespace Content.Shared.Chemistry.EntitySystems var filledVolumeFraction = solution.CurrentVolume.Float() / solution.MaxVolume.Float(); appearance.SetData(SolutionContainerVisuals.VisualState, new SolutionContainerVisualState(solution.Color, filledVolumeFraction)); - solutionEntity.Dirty(); } ///