Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Commit

Permalink
Fix weeks
Browse files Browse the repository at this point in the history
  • Loading branch information
PichotM authored Nov 1, 2018
1 parent 7ab7e16 commit 8b4b67d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sv_stats.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ local function timeToStr( time )
local d = math.floor(tmp % 7)
local w = math.floor( tmp / 7 )

return string.format( "%02is %id %02ih %02im %02is", w, d, h, m, s )
return string.format( "%02iw %id %02ih %02im %02is", w, d, h, m, s )
end

local function notifyChat(intSource, stringPrefix, stringMessage, tblColor)
Expand Down Expand Up @@ -130,4 +130,4 @@ end)
local count = 0
for _,v in pairs(GetTrackedData()) do count = count + 1 end

print("[pTracker] Successfully loaded: " .. count .. " player(s).")
print("[pTracker] Successfully loaded: " .. count .. " player(s).")

0 comments on commit 8b4b67d

Please sign in to comment.