Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ function GameMode:_InitGameMode()
if BAREBONES_DEBUG_SPEW then
spew = 1
end
Convars:RegisterConvar('barebones_spew', tostring(spew), 'Set to 1 to start spewing barebones debug info. Set to 0 to disable.', 0)

--TODO: RegisterConvar was broken as of Nov. 12th
--Since this call is rarely used, it should be removed from the base script untill volvo fixes it.
--Convars:RegisterConvar('barebones_spew', tostring(spew), 'Set to 1 to start spewing barebones debug info. Set to 0 to disable.', 0)

-- Change random seed
local timeTxt = string.gsub(string.gsub(GetSystemTime(), ':', ''), '0','')
Expand Down Expand Up @@ -171,4 +174,4 @@ function GameMode:_CaptureGameMode()

self:OnFirstPlayerLoaded()
end
end
end