diff --git a/TweaksAndThings/Patches/CarPickable_HandleShowContextMenu_Patch.cs b/TweaksAndThings/Patches/CarPickable_HandleShowContextMenu_Patch.cs index 723f828..36e82c9 100644 --- a/TweaksAndThings/Patches/CarPickable_HandleShowContextMenu_Patch.cs +++ b/TweaksAndThings/Patches/CarPickable_HandleShowContextMenu_Patch.cs @@ -45,6 +45,11 @@ internal class CarPickable_HandleShowContextMenu_Patch }); } + shared.AddButton(ContextMenuQuadrant.Unused2, $"Follow", SpriteName.Inspect, delegate + { + CameraSelector.shared.FollowCar(car); + }); + shared.BuildItemAngles(); shared.StartCoroutine(shared.AnimateButtonsShown()); }