You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're installing already installed brakes, the notify shows they're a tier below than what they actually are.
The fix is changing:
performance.lua:81 if GetVehicleMod(vehicle, 12) == level then triggerNotify(nil, QBCore.Shared.Items["brakes"..level].label.." "..Loc[Config.Lan]["common"].already, "error") else
to if GetVehicleMod(vehicle, 12) == level then triggerNotify(nil, QBCore.Shared.Items["brakes"..level+1].label.." "..Loc[Config.Lan]["common"].already, "error") else
The text was updated successfully, but these errors were encountered:
If you're installing already installed brakes, the notify shows they're a tier below than what they actually are.
The fix is changing:
performance.lua:81
if GetVehicleMod(vehicle, 12) == level then triggerNotify(nil, QBCore.Shared.Items["brakes"..level].label.." "..Loc[Config.Lan]["common"].already, "error") else
to
if GetVehicleMod(vehicle, 12) == level then triggerNotify(nil, QBCore.Shared.Items["brakes"..level+1].label.." "..Loc[Config.Lan]["common"].already, "error") else
The text was updated successfully, but these errors were encountered: