launcher: Remove deprecated downloader code
This commit is contained in:
parent
802f4d3a68
commit
7f3c81b386
4 changed files with 13 additions and 1537 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -16,3 +16,4 @@ venv/
|
|||
*.trackRecords
|
||||
PPYTHON_PATH
|
||||
local/
|
||||
errorCode
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -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
|
||||
|
|
|
@ -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.')
|
||||
|
|
Loading…
Reference in a new issue