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
|
*.trackRecords
|
||||||
PPYTHON_PATH
|
PPYTHON_PATH
|
||||||
local/
|
local/
|
||||||
|
errorCode
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -72,7 +72,6 @@ class QuickLauncher(LauncherBase):
|
||||||
self.serverDbFileHash = HashVal()
|
self.serverDbFileHash = HashVal()
|
||||||
self.launcherFileDbHash = HashVal()
|
self.launcherFileDbHash = HashVal()
|
||||||
self.DECREASE_BANDWIDTH = 0
|
self.DECREASE_BANDWIDTH = 0
|
||||||
self.httpChannel.setDownloadThrottle(0)
|
|
||||||
self.webAcctParams = 'WEB_ACCT_PARAMS'
|
self.webAcctParams = 'WEB_ACCT_PARAMS'
|
||||||
self.parseWebAcctParams()
|
self.parseWebAcctParams()
|
||||||
self.showPhase = -1
|
self.showPhase = -1
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
import sys
|
from panda3d.core import *
|
||||||
sys.path = ['']
|
if __debug__:
|
||||||
import Phase2
|
loadPrcFile('etc/Configrc.prc')
|
||||||
|
else:
|
||||||
|
import sys
|
||||||
|
sys.path = ['']
|
||||||
from toontown.launcher.QuickLauncher import QuickLauncher
|
from toontown.launcher.QuickLauncher import QuickLauncher
|
||||||
launcher = QuickLauncher()
|
launcher = QuickLauncher()
|
||||||
launcher.notify.info('Reached end of StartQuickLauncher.py.')
|
launcher.notify.info('Reached end of StartQuickLauncher.py.')
|
||||||
|
|
Loading…
Reference in a new issue