File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ namespace TribesLauncherSharp
1616 enum LoginServerMode
1717 {
1818 Community ,
19+ PUG ,
1920 HiRez ,
2021 Custom ,
2122 }
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ public LocalPackage SelectedPackage
8787
8888 private Config LauncherConfig { get => DataModel . LauncherConfig ; }
8989
90- public static SemanticVersion LauncherVersion { get ; } = SemanticVersion . Parse ( "2.1.1 " ) ;
90+ public static SemanticVersion LauncherVersion { get ; } = SemanticVersion . Parse ( "2.1.3 " ) ;
9191
9292 System . Timers . Timer AutoInjectTimer { get ; set ; }
9393
@@ -263,7 +263,10 @@ private void LaunchGame()
263263 {
264264 loginServerHost = TAModsNews . LoginServers . Find ( ( ls ) => ls . Name == "Community" ) . Address ;
265265 }
266-
266+ else if ( config . LoginServer . LoginServer == LoginServerMode . PUG )
267+ {
268+ loginServerHost = TAModsNews . LoginServers . Find ( ( ls ) => ls . Name == "PUG" ) . Address ;
269+ }
267270 try
268271 {
269272 lastLaunchedProcessId = InjectorLauncher . LaunchGame ( config . GamePath , loginServerHost , config . CustomArguments ) ;
@@ -487,7 +490,7 @@ private void InitInfoRichTextBox()
487490 linksList . ListItems . Add ( new ListItem ( new Paragraph ( linkTamodsOrg ) ) ) ;
488491
489492 var linkNADiscord = new Hyperlink ( new Run ( "NA Tribes Discord" ) ) ;
490- linkNADiscord . NavigateUri = new Uri ( "https://discord.gg/gyWew2jHBx " ) ;
493+ linkNADiscord . NavigateUri = new Uri ( "https://discord.gg/dd8JgzJ " ) ;
491494 linksList . ListItems . Add ( new ListItem ( new Paragraph ( linkNADiscord ) ) ) ;
492495
493496 var linkAUDiscord = new Hyperlink ( new Run ( "Australian Tribes Discord" ) ) ;
Original file line number Diff line number Diff line change 5151// You can specify all the values or you can default the Build and Revision Numbers
5252// by using the '*' as shown below:
5353// [assembly: AssemblyVersion("1.0.*")]
54- [ assembly: AssemblyVersion ( "2.1.1 .0" ) ]
55- [ assembly: AssemblyFileVersion ( "2.1.1 .0" ) ]
54+ [ assembly: AssemblyVersion ( "2.1.3 .0" ) ]
55+ [ assembly: AssemblyFileVersion ( "2.1.3 .0" ) ]
You can’t perform that action at this time.
0 commit comments