diff --git a/beatrun/Beatrun Animations Installer.exe b/beatrun/Beatrun Animations Installer.exe index 5f8c005..1095082 100644 Binary files a/beatrun/Beatrun Animations Installer.exe and b/beatrun/Beatrun Animations Installer.exe differ diff --git a/beatrun/anims.py b/beatrun/anims.py index 5a523ab..fa61a9c 100644 --- a/beatrun/anims.py +++ b/beatrun/anims.py @@ -8,10 +8,12 @@ i = input("Type \"y\" for new animations or \"n\" for old animations to be insta if i == "y": for file in files_new: - shutil.copy2(file, "gamemodes/beatrun/content/models") + shutil.copy2("_new/" + file, "gamemodes/beatrun/content/models") + print("New animations installed successfully") else: for file in files_old: - shutil.copy2(file, "gamemodes/beatrun/content/models") + shutil.copy2("_old/" + file, "gamemodes/beatrun/content/models") + print("Old animations installed successfully") print("i hate python") sys.exit(0) \ No newline at end of file