diff --git a/tools/build_client.py b/tools/build_client.py index 2aa1c1f8..5d4913a0 100644 --- a/tools/build_client.py +++ b/tools/build_client.py @@ -10,9 +10,9 @@ parser.add_argument('--build-dir', default='build', help='The directory of which the build was prepared.') parser.add_argument('--output', default='GameData.pyd', help='The built file.') -parser.add_argument('--main-module', default='united.base.ClientStart', +parser.add_argument('--main-module', default='toontown.toonbase.ClientStartDist', help='The module to load at the start of the game.') -parser.add_argument('modules', nargs='*', default=['shared', 'united'], +parser.add_argument('modules', nargs='*', default=['otp', 'toontown'], help='The Toontown United modules to be included in the build.') args = parser.parse_args() diff --git a/toontown/toonbase/ClientStart.py b/toontown/toonbase/ClientStart.py index de368cd6..d6ceb630 100644 --- a/toontown/toonbase/ClientStart.py +++ b/toontown/toonbase/ClientStart.py @@ -166,7 +166,7 @@ else: import ToontownLoader from direct.gui.DirectGui import * serverVersion = base.config.GetString('server-version', 'no_version_set') -version = OnscreenText(serverVersion, pos=(-1.3, -0.975), scale=0.06, fg=Vec4(0, 0, 0, 1), align=TextNode.ALeft) +version = OnscreenText(serverVersion, pos=(-1.3, -0.975), scale=0.06, fg=Vec4(0, 0, 1, 0.6), align=TextNode.ALeft) version.setPos(0.03,0.03) version.reparentTo(base.a2dBottomLeft) from toontown.suit import Suit