From 9bbbedf6cdd0f99fce717de0712ddf9109d4123e Mon Sep 17 00:00:00 2001 From: Obie Hinojosa Date: Tue, 31 Dec 2024 14:55:13 -0600 Subject: [PATCH] fix warning message to be... less alarming --- .gitignore | 1 + installer.py | 8 +++----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 40be16d..909c0e2 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.env *.spec *.test.py +*.code-workspace checklist.md /build /dist diff --git a/installer.py b/installer.py index a5b8550..4623dac 100644 --- a/installer.py +++ b/installer.py @@ -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) \ No newline at end of file