We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 24fb0cc + 744c3e7 commit 5ce8d6cCopy full SHA for 5ce8d6c
Client/mods/deathmatch/logic/CVehicleUpgrades.cpp
@@ -79,6 +79,13 @@ bool CVehicleUpgrades::IsUpgradeCompatible(unsigned short usUpgrade)
79
if (us == VEHICLEUPGRADE_NITRO_5X || us == VEHICLEUPGRADE_NITRO_2X || us == VEHICLEUPGRADE_NITRO_10X || us == VEHICLEUPGRADE_HYDRAULICS)
80
return true;
81
82
+ if (us == 1000 || us == 1001 || us == 1002 || us == 1003 || us == 1014 || /* spoiler */
83
+ us == 1015 || us == 1016 || us == 1023 || us == 1049 || us == 1050 || us == 1058 || us == 1060 || us == 1138 || us == 1139 || us == 1146 ||
84
+ us == 1147 || us == 1158 || us == 1162 || us == 1163 || us == 116)
85
+ {
86
+ return true;
87
+ }
88
+
89
bool bReturn = false;
90
switch (usModel)
91
{
0 commit comments