Skip to content

Commit

Permalink
Merge pull request #1 from RyanEHenderson/main
Browse files Browse the repository at this point in the history
Fix two minor issues in the python script
  • Loading branch information
capSAR273 authored Jul 19, 2021
2 parents a413d9d + 27a9d1a commit 972d7d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions OmnifactoryMigrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
print("Before you continue, make sure you have imported the new instance in MultiMC from the zip file first!\n")

old_path=input("Enter the path to the old version's minecraft folder.\n")
new_path=input("Enter the path to the old version's minecraft folder.\n")
new_path=input("Enter the path to the new version's minecraft folder.\n")


#This will take the important folders/files recommended on the Omnifactory GitHub and copy them to the new instance folder.
Expand Down Expand Up @@ -43,6 +43,6 @@ def copyFiles(old_path,new_path):
else:
shutil.copyfile(os.path.join(old_path,'config','jei','bookmarks.ini'), os.path.join(new_path,'config','jei','bookmarks.ini'))

copyFiles(old_path,new_path)
print("Copying Files...\n")
print("Copy Complete!\n")
copyFiles(old_path,new_path)
print("Copy Complete!\n")

0 comments on commit 972d7d9

Please sign in to comment.