launcher: Remove deprecated downloader code

This commit is contained in:
John Cote 2021-06-29 19:28:49 -04:00
parent 802f4d3a68
commit 7f3c81b386
4 changed files with 13 additions and 1537 deletions

1
.gitignore vendored
View file

@ -16,3 +16,4 @@ venv/
*.trackRecords
PPYTHON_PATH
local/
errorCode

File diff suppressed because it is too large Load diff

View file

@ -72,7 +72,6 @@ class QuickLauncher(LauncherBase):
self.serverDbFileHash = HashVal()
self.launcherFileDbHash = HashVal()
self.DECREASE_BANDWIDTH = 0
self.httpChannel.setDownloadThrottle(0)
self.webAcctParams = 'WEB_ACCT_PARAMS'
self.parseWebAcctParams()
self.showPhase = -1

View file

@ -1,6 +1,9 @@
from panda3d.core import *
if __debug__:
loadPrcFile('etc/Configrc.prc')
else:
import sys
sys.path = ['']
import Phase2
from toontown.launcher.QuickLauncher import QuickLauncher
launcher = QuickLauncher()
launcher.notify.info('Reached end of StartQuickLauncher.py.')