Skip to content

Commit

Permalink
use spew instead of log for gametime
Browse files Browse the repository at this point in the history
  • Loading branch information
CookieNoob authored and aeoncleanse committed Nov 27, 2017
1 parent 2450f9b commit 3500a19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/simInit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ function GameTimeLogger()
local time
while true do
time = GetGameTimeSeconds()
LOG(string.format('Current gametime: %02d:%02d:%02d', math.floor(time/3600), math.floor(time/60), math.mod(time, 60)))
SPEW(string.format('Current gametime: %02d:%02d:%02d', math.floor(time/3600), math.floor(time/60), math.mod(time, 60)))
WaitSeconds(30)
end
end
Expand Down

0 comments on commit 3500a19

Please sign in to comment.