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 9abcaa4 commit 10ce1e6
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", [], 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 = [];
List<MenuItem.Icon> icons = new {};

foreach (var name in categoryNames)
{
Expand Down

0 comments on commit 10ce1e6

Please sign in to comment.