From 8787b7916204e605ed0827da7a93c4462282fa09 Mon Sep 17 00:00:00 2001 From: Tom Grobbe <31419184+TomGrobbe@users.noreply.github.com> Date: Thu, 29 Oct 2020 18:39:02 +0100 Subject: [PATCH] Fix vehicle stats panel text labels --- MenuAPI/Menu.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MenuAPI/Menu.cs b/MenuAPI/Menu.cs index 50ede28..9038a4f 100644 --- a/MenuAPI/Menu.cs +++ b/MenuAPI/Menu.cs @@ -433,7 +433,7 @@ public bool Visible public bool ShowVehicleStatsPanel { get; set; } = false; private readonly string[] weaponStatNames = new string[4] { "PM_DAMAGE", "PM_FIRERATE", "PM_ACCURACY", "PM_RANGE" }; - private readonly string[] vehicleStatNames = new string[4] { "CMOD_STAT_0", "CMOD_STAT_1", "CMOD_STAT_2", "CMOD_STAT_3" }; + private readonly string[] vehicleStatNames = new string[4] { "FMMC_VEHST_0", "FMMC_VEHST_1", "FMMC_VEHST_2", "FMMC_VEHST_3" }; private bool filterActive = false;