Skip to content

Commit

Permalink
update 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Atillart-One committed Dec 13, 2021
1 parent 1b765e4 commit 88d6af2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.)
Expand Down
Binary file modified images/11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/18.png
Binary file not shown.
2 changes: 1 addition & 1 deletion images/image_count.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
17
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 88d6af2

Please sign in to comment.