Skip to content

Commit

Permalink
fix(launcher): Rm permissions check
Browse files Browse the repository at this point in the history
  • Loading branch information
cbartram committed Nov 23, 2024
1 parent ed99a67 commit 36a6551
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<groupId>net.runelite</groupId>
<artifactId>kraken-launcher</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<name>Kraken Launcher</name>
<description>Launcher for Kraken client</description>

Expand Down
8 changes: 4 additions & 4 deletions src/main/java/net/runelite/launcher/Launcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -277,10 +277,10 @@ public static void main(String[] args) throws InterruptedException {
}

// fix up permissions before potentially removing the RUNASADMIN compat key
if (FilesystemPermissions.check()) {
// check() opens an error dialog
return;
}
// if (FilesystemPermissions.check()) {
// // check() opens an error dialog
// return;
// }

if (JagexLauncherCompatibility.check()) {
// check() opens an error dialog
Expand Down

0 comments on commit 36a6551

Please sign in to comment.