Skip to content

Commit

Permalink
Remove release mode DRM.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebane1 committed Nov 28, 2023
1 parent 2f6dbd2 commit f986eb8
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions Penumbra/UI/ConfigWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,21 +73,6 @@ public override void Draw()
+ "Please use the Launcher's Repair Game Files function to repair your client installation.");
DrawImcExceptions();
}
else if (!_validityChecker.IsValidSourceRepo)
{
DrawProblemWindow(
$"You are loading a release version of Penumbra from the repository \"{_pluginInterface.SourceRepository}\" instead of the official repository.\n"
+ $"Please use the official repository at {ValidityChecker.Repository} or the suite repository at {ValidityChecker.SeaOfStars}.\n\n"
+ "If you are developing for Penumbra and see this, you should compile your version in debug mode to avoid it.");
}
else if (_validityChecker.IsNotInstalledPenumbra)
{
DrawProblemWindow(
$"You are loading a release version of Penumbra from \"{_pluginInterface.AssemblyLocation.Directory?.FullName ?? "Unknown"}\" instead of the installedPlugins directory.\n\n"
+ "You should not install Penumbra manually, but rather add the plugin repository under settings and then install it via the plugin installer.\n\n"
+ "If you do not know how to do this, please take a look at the readme in Penumbras github repository or join us in discord.\n"
+ "If you are developing for Penumbra and see this, you should compile your version in debug mode to avoid it.");
}
else if (_validityChecker.DevPenumbraExists)
{
DrawProblemWindow(
Expand Down

0 comments on commit f986eb8

Please sign in to comment.