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 *.env
*.spec *.spec
*.test.py *.test.py
*.code-workspace
checklist.md checklist.md
/build /build
/dist /dist

View File

@ -76,10 +76,8 @@ def win_check_folder_exists(folder):
if not os.path.exists(dir): if not os.path.exists(dir):
print() print()
print("[WARN!]: Mod folder not found. (is Fabric installed?)") 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("[WARN!]: (note: the script will go on as usual without breaking anything, but if")
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("[WARN!]: you don't have fabric installed, your mods won't load when you start the game.")
print()
print("[WARN!] THIS IS NOT A FATAL ERROR! DON'T CLOSE THE WINDOW!")
os.mkdir("mods") os.mkdir("mods")
print() print()
time.sleep(20) time.sleep(20)
@ -164,5 +162,5 @@ ascii_art()
print("sigma!") print("sigma!")
print("all done!") 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) time.sleep(10)