general: Fix config & DC paths
This commit is contained in:
parent
ffc6cbd69b
commit
5cbcd65c94
|
|
@ -20,4 +20,3 @@ venv/
|
||||||
PPYTHON_PATH
|
PPYTHON_PATH
|
||||||
local/
|
local/
|
||||||
errorCode
|
errorCode
|
||||||
otpgo
|
|
||||||
|
|
|
||||||
|
|
@ -31,8 +31,8 @@ want-dev 0
|
||||||
schellgames-dev 0
|
schellgames-dev 0
|
||||||
|
|
||||||
# DC Files
|
# DC Files
|
||||||
dc-file etc/toon.dc
|
dc-file config/toon.dc
|
||||||
dc-file etc/otp.dc
|
dc-file config/otp.dc
|
||||||
|
|
||||||
# HTTP/Downloading
|
# HTTP/Downloading
|
||||||
verify-ssl 0
|
verify-ssl 0
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
otpgo
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
if __debug__:
|
if __debug__:
|
||||||
from panda3d.core import loadPrcFile
|
from panda3d.core import loadPrcFile
|
||||||
loadPrcFile('etc/Configrc.prc')
|
loadPrcFile('config/Configrc.prc')
|
||||||
else:
|
else:
|
||||||
import sys
|
import sys
|
||||||
sys.path = ['']
|
sys.path = ['']
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ try:
|
||||||
launcher
|
launcher
|
||||||
except:
|
except:
|
||||||
if __debug__:
|
if __debug__:
|
||||||
loadPrcFile('etc/Configrc.prc')
|
loadPrcFile('config/Configrc.prc')
|
||||||
|
|
||||||
from toontown.launcher.ToontownDummyLauncher import ToontownDummyLauncher
|
from toontown.launcher.ToontownDummyLauncher import ToontownDummyLauncher
|
||||||
launcher = ToontownDummyLauncher()
|
launcher = ToontownDummyLauncher()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue