From 4c8425c71441ef50fa061a45cf01245c68d16d91 Mon Sep 17 00:00:00 2001 From: Fierelier Date: Sun, 2 Jun 2019 16:17:53 +0200 Subject: [PATCH] (Experimental) Folders no longer get claimed I think it might be better for the user to just use elevated rights instead. This comes with complications on Windows, but I want to work these out. --- UniversalModloader.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/UniversalModloader.py b/UniversalModloader.py index ac6ae13..b847690 100644 --- a/UniversalModloader.py +++ b/UniversalModloader.py @@ -141,10 +141,10 @@ def loadMods(output = False, fast = False): if output: print("Mods are already loaded and could not be unloaded.") return False - print("Claiming app folder...") - claimFolder(appPath) - print("Claiming mod folder...") - claimFolder(modPath) + #print("Claiming app folder...") + #claimFolder(appPath) + #print("Claiming mod folder...") + #claimFolder(modPath) print("Testing access...") if testAccess(appPath) == False: if output: print("Can't access folder! Is it in use?")