Skip to content

Commit

Permalink
Update SavedVehicles.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
XdGoldenTigerOfficial committed Jan 16, 2024
1 parent 50faad8 commit b08187a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vMenu/menus/SavedVehicles.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class SavedVehicles
private SavedVehicleCategory currentCategory;

// Need to be editable from other functions
private readonly MenuListItem setCategoryBtn = new("Set Vehicle Category", new {}, 0, "Sets this Vehicle's category. Select to save.");
private readonly MenuListItem setCategoryBtn = new("Set Vehicle Category", new[] {}, 0, "Sets this Vehicle's category. Select to save.");

/// <summary>
/// Creates the menu.
Expand Down Expand Up @@ -901,7 +901,7 @@ private List<string> GetAllCategoryNames()

private List<MenuItem.Icon> GetCategoryIcons(List<string> categoryNames)
{
List<MenuItem.Icon> icons = new {};
List<MenuItem.Icon> icons = new[] {};

foreach (var name in categoryNames)
{
Expand Down

0 comments on commit b08187a

Please sign in to comment.