From 786c8a7c792a0b18bc2704d6ea98a0e064b12cff Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Fri, 15 Jul 2022 12:43:39 +1000 Subject: [PATCH] Make sure dragdrop doesn't delay by a frame (#9745) --- Content.Client/DragDrop/DragDropSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Client/DragDrop/DragDropSystem.cs b/Content.Client/DragDrop/DragDropSystem.cs index 13842631ab..d5841080fd 100644 --- a/Content.Client/DragDrop/DragDropSystem.cs +++ b/Content.Client/DragDrop/DragDropSystem.cs @@ -80,6 +80,7 @@ namespace Content.Client.DragDrop public override void Initialize() { UpdatesOutsidePrediction = true; + UpdatesAfter.Add(typeof(EyeUpdateSystem)); _dragDropHelper = new DragDropHelper(OnBeginDrag, OnContinueDrag, OnEndDrag); _cfgMan.OnValueChanged(CCVars.DragDropDeadZone, SetDeadZone, true);