Skip to content

Commit

Permalink
Add new "Track" Wheel Type
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelCoding25 authored and TomGrobbe committed Dec 4, 2021
1 parent 13a6a92 commit fff26f0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions vMenu/menus/VehicleOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1798,9 +1798,10 @@ public void UpdateMods(int selectedIndex = 0)
"Benny's (1)", // 8
"Benny's (2)", // 9
"Open Wheel", // 10
"Street" // 11
"Street", // 11
"Track" // 12
};
MenuListItem vehicleWheelType = new MenuListItem("Wheel Type", wheelTypes, MathUtil.Clamp(GetVehicleWheelType(veh.Handle), 0, 11), $"Choose a ~y~wheel type~s~ for your vehicle.");
MenuListItem vehicleWheelType = new MenuListItem("Wheel Type", wheelTypes, MathUtil.Clamp(GetVehicleWheelType(veh.Handle), 0, 12), $"Choose a ~y~wheel type~s~ for your vehicle.");
if (!veh.Model.IsBoat && !veh.Model.IsHelicopter && !veh.Model.IsPlane && !veh.Model.IsBicycle && !veh.Model.IsTrain)
{
VehicleModMenu.AddMenuItem(vehicleWheelType);
Expand Down

0 comments on commit fff26f0

Please sign in to comment.