Speziellerer DeveloperMode => Generell im Debug Modus

This commit is contained in:
2026-02-20 15:44:13 +01:00
parent e7e01f3d36
commit 9279d503b7

View File

@@ -25,14 +25,16 @@ namespace BeWo.Core
public void TryActiveDeveloperMode(string[] args)
{
if (Stage != BeWoClientReleaseStage.Sandbox)
#if !DEBUG
if (Stage != BeWoClientReleaseStage.Sandbox && Stage != BeWoClientReleaseStage.ProofOfConcept)
return;
#if !DEBUG
if (args.All(x => x != "/bewodevmode" && x != "--bewodevmode"))
return;
#endif
// Darf noch nicht aktiviert sein
if (IsInDeveloperMode)
throw new NotImplementedException();