Allow chair drag buckling again (#2281)

* Allow chair drag buckling again

* Revert "Allow chair drag buckling again"

This reverts commit 317e116b60c01f9198889cd5cbbd70ca9f32e7d6.

* Fix args.Dragged being passed as the target instead of args.Target

Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
This commit is contained in:
metalgearsloth
2020-10-17 19:53:52 +11:00
committed by GitHub
parent dc6fb649ea
commit 05a78f117d

View File

@@ -43,7 +43,7 @@ namespace Content.Shared.GameObjects.Components.Buckle
public bool Drop(DragDropEventArgs args)
{
return TryBuckle(args.User, args.Dragged);
return TryBuckle(args.User, args.Target);
}
}