diff --git a/README.md b/README.md index c3271fe..8e690bc 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ A launcher for the Dark Souls III mod Champion's Ashes, made by atillart#4807. To use, simply extract into a folder and run AshesLauncher4.exe. If you have an older non-launcher manual install, delete the Ashes folder inside the AshesLauncher folder from your Game folder, or select another mod directory. If you recieve any error while trying to launch the mod from a manual install, try pressing "Reset All Files" present under the MODS tab first. -The launcher temporarily freezing is completely normal after pressing it. +The launcher temporarily freezing after pressing it is completely normal. ## Using Other Mods To utilize other mods when not playing Champion's Ashes, simply put the mods in their own folders inside the AshesLauncher folder (can be changed by selecting mods path in MODS tab.) diff --git a/images/11.png b/images/11.png index e527c8c..0008bc5 100644 Binary files a/images/11.png and b/images/11.png differ diff --git a/images/18.png b/images/18.png deleted file mode 100644 index 0008bc5..0000000 Binary files a/images/18.png and /dev/null differ diff --git a/images/image_count.txt b/images/image_count.txt index 25bf17f..8e2afd3 100644 --- a/images/image_count.txt +++ b/images/image_count.txt @@ -1 +1 @@ -18 \ No newline at end of file +17 \ No newline at end of file diff --git a/main.py b/main.py index b474b70..b57cb83 100644 --- a/main.py +++ b/main.py @@ -393,15 +393,15 @@ def migrate(): def ashes(): if git_enabled == 1: - for files in os.listdir(moddir + "/Ashes/.git"): - if files.endswith('.lock'): - os.remove(moddir + "/Ashes/.git/" + files) if os.path.isdir(moddir + "/Ashes/.git") is False: Path(moddir + "/Ashes").mkdir(parents=True, exist_ok=True) s = threading.Thread(target=install) s.setDaemon(True) s.start() else: + for files in os.listdir(moddir + "/Ashes/.git"): + if files.endswith('.lock'): + os.remove(moddir + "/Ashes/.git/" + files) s = threading.Thread(target=update) s.setDaemon(True) s.start()