fix warning message to be... less alarming

This commit is contained in:
Obie Hinojosa 2024-12-31 14:55:13 -06:00
parent dd922a61cf
commit 9bbbedf6cd
2 changed files with 4 additions and 5 deletions

1
.gitignore vendored
View File

@ -2,6 +2,7 @@
*.env
*.spec
*.test.py
*.code-workspace
checklist.md
/build
/dist

View File

@ -76,10 +76,8 @@ def win_check_folder_exists(folder):
if not os.path.exists(dir):
print()
print("[WARN!]: Mod folder not found. (is Fabric installed?)")
print("[WARN!]: (note: the script WILL KEEP GOING ANYWAYS and the mods directory will be MADE AUTOMATICALLY, but")
print("[WARM!]: if you don't have fabric, the mods won't be loaded and you won't be able to join the server.)")
print()
print("[WARN!] THIS IS NOT A FATAL ERROR! DON'T CLOSE THE WINDOW!")
print("[WARN!]: (note: the script will go on as usual without breaking anything, but if")
print("[WARN!]: you don't have fabric installed, your mods won't load when you start the game.")
os.mkdir("mods")
print()
time.sleep(20)
@ -164,5 +162,5 @@ ascii_art()
print("sigma!")
print("all done!")
print("This windows will exit and close in ten seconds. :)")
print("This window will exit and close in ten seconds. :)")
time.sleep(10)