We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6696d90 commit 75d8d21Copy full SHA for 75d8d21
1 file changed
EddiCore/EDDI.cs
@@ -561,12 +561,9 @@ private async Task OnStatusChangedAsync ( object sender )
561
562
public static bool ShouldUseTestEndpoints()
563
{
564
-#if DEBUG
565
- return true;
566
-#else
567
- // use test endpoints if the game is in beta
568
- return Instance.gameIsBeta;
569
-#endif
+ // use test endpoints if the game is in beta or EDDI is in a test phase
+ return Instance.gameIsBeta ||
+ Constants.EDDI_VERSION.phase < Utilities.Version.TestPhase.rc ;
570
}
571
572
public void Start()
0 commit comments