@@ -154,7 +154,7 @@ private static void LaunchGameViaHeroic()
154154 }
155155
156156 public static void LaunchBots (
157- List < rlbot . flat . PlayerConfigurationT > bots ,
157+ List < RLBot . Flat . PlayerConfigurationT > bots ,
158158 int rlbotSocketsPort
159159 )
160160 {
@@ -199,7 +199,7 @@ int rlbotSocketsPort
199199 }
200200
201201 public static void LaunchScripts (
202- List < rlbot . flat . ScriptConfigurationT > scripts ,
202+ List < RLBot . Flat . ScriptConfigurationT > scripts ,
203203 int rlbotSocketsPort
204204 )
205205 {
@@ -246,15 +246,15 @@ int rlbotSocketsPort
246246 }
247247
248248 public static void LaunchRocketLeague (
249- rlbot . flat . Launcher launcherPref ,
249+ RLBot . Flat . Launcher launcherPref ,
250250 string extraArg ,
251251 int gamePort
252252 )
253253 {
254254#if WINDOWS
255255 switch ( launcherPref )
256256 {
257- case rlbot . flat . Launcher . Steam :
257+ case RLBot . Flat . Launcher . Steam :
258258 string steamPath = GetWindowsSteamPath ( ) ;
259259 Process steam = new ( ) ;
260260 steam . StartInfo . FileName = steamPath ;
@@ -266,7 +266,7 @@ int gamePort
266266 ) ;
267267 steam . Start ( ) ;
268268 break ;
269- case rlbot . flat . Launcher . Epic :
269+ case RLBot . Flat . Launcher . Epic :
270270 bool nonRLBotGameRunning = IsRocketLeagueRunning ( ) ;
271271
272272 // we don't need to start the game because there's another instance of non-rlbot rocket league open
@@ -333,7 +333,7 @@ int gamePort
333333 } ) . Start ( ) ;
334334
335335 break ;
336- case rlbot . flat . Launcher . Custom :
336+ case RLBot . Flat . Launcher . Custom :
337337 if ( extraArg . ToLower ( ) == "legendary" )
338338 {
339339 LaunchGameViaLegendary ( ) ;
@@ -346,13 +346,13 @@ int gamePort
346346 }
347347
348348 throw new NotSupportedException ( $ "Unexpected launcher, \" { extraArg } \" ") ;
349- case rlbot . flat . Launcher . NoLaunch :
349+ case RLBot . Flat . Launcher . NoLaunch :
350350 break ;
351351 }
352352#else
353353 switch ( launcherPref )
354354 {
355- case rlbot . flat . Launcher . Steam :
355+ case RLBot . Flat . Launcher . Steam :
356356 string args = string . Join ( "%20" , GetIdealArgs ( gamePort ) ) ;
357357 Process rocketLeague = new ( ) ;
358358 rocketLeague . StartInfo . WindowStyle = ProcessWindowStyle . Hidden ;
@@ -364,11 +364,11 @@ int gamePort
364364 ) ;
365365 rocketLeague . Start ( ) ;
366366 break ;
367- case rlbot . flat . Launcher . Epic :
367+ case RLBot . Flat . Launcher . Epic :
368368 throw new NotSupportedException (
369369 "Epic Games Store is not directly supported on Linux."
370370 ) ;
371- case rlbot . flat . Launcher . Custom :
371+ case RLBot . Flat . Launcher . Custom :
372372 if ( extraArg . ToLower ( ) == "legendary" )
373373 {
374374 LaunchGameViaLegendary ( ) ;
@@ -381,7 +381,7 @@ int gamePort
381381 }
382382
383383 throw new NotSupportedException ( $ "Unexpected launcher, \" { extraArg } \" ") ;
384- case rlbot . flat . Launcher . NoLaunch :
384+ case RLBot . Flat . Launcher . NoLaunch :
385385 break ;
386386 }
387387#endif
0 commit comments