Skip to content

Commit

Permalink
Fixed typo in 1.2 server.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
RockySouthpaw committed Oct 25, 2020
1 parent bead85d commit 5166842
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/server 1-2/server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ function addMessage(source, identifier, phone_number, message, gps_data)
if (gps_data) then
gpsTimeout = gps_data.time
end
local timeInMinutes = ESX.Math.Round( gpsTimeout / (1000 * 60) )
local timeInMinutes = ESX.Math.Round( gpsTimeout / 1000 / 60 )
local timeString = (timeInMinutes == nil) and '' or ' ' .. tostring(timeInMinutes) .. ' min'
message = 'GPS Live Position:' .. timeString .. ''
isRealtimeGPS = true
Expand Down

0 comments on commit 5166842

Please sign in to comment.