This commit is contained in:
Jonny_Bro (Nikita) 2023-07-28 21:41:38 +05:00
parent 34ec4813a4
commit 95142a82fa
2 changed files with 4 additions and 2 deletions

View file

@ -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)