Skip to content

Commit

Permalink
style: Add semicolon in line 138
Browse files Browse the repository at this point in the history
  • Loading branch information
l3lackMegas committed Jan 15, 2021
1 parent a982115 commit fe70f61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Citizen.CreateThread(function()

if (veh == 0) then
cruiseEnabled, seatbeltEnabled = false, false;
vehData['currSpd'] = 0.0
vehData['currSpd'] = 0.0;
else
local vehicleClass = GetVehicleClass(veh);
vehData['hasBelt'] = isVehicleClassHasBelt(vehicleClass);
Expand All @@ -144,4 +144,4 @@ Citizen.CreateThread(function()

Citizen.Wait(500);
end
end)
end)

0 comments on commit fe70f61

Please sign in to comment.