diff --git a/game/dota_addons/barebones/scripts/vscripts/internal/gamemode.lua b/game/dota_addons/barebones/scripts/vscripts/internal/gamemode.lua index 6142eb7..ab0613b 100644 --- a/game/dota_addons/barebones/scripts/vscripts/internal/gamemode.lua +++ b/game/dota_addons/barebones/scripts/vscripts/internal/gamemode.lua @@ -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','') @@ -171,4 +174,4 @@ function GameMode:_CaptureGameMode() self:OnFirstPlayerLoaded() end -end \ No newline at end of file +end