mirror of
https://github.com/JonnyBro/beatrun.git
synced 2024-12-28 12:53:02 +05:00
Fixes
This commit is contained in:
parent
34ec4813a4
commit
95142a82fa
2 changed files with 4 additions and 2 deletions
Binary file not shown.
|
@ -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)
|
Loading…
Reference in a new issue