From 2dec843a0e6f29026024c43ba3c84cde938ad107 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Wed, 29 Jul 2020 19:27:34 +0200 Subject: [PATCH] :bug: --- funcs/miscFuncs.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/funcs/miscFuncs.py b/funcs/miscFuncs.py index 670b766..ef1aa2c 100644 --- a/funcs/miscFuncs.py +++ b/funcs/miscFuncs.py @@ -196,6 +196,11 @@ def makeFiles(): if os.path.isdir("resources/games/4InARowBoards") == False: os.makedirs("resources/games/4InARowBoards") logThis("The tables directory didn't exist") + + # Creates the 4InARowBoards foulder if it doesn't exist + if os.path.isdir("resources/games/oldImages") == False: + os.makedirs("resources/games/oldImages") + logThis("The tables directory didn't exist") # Replaces multiple things with the same thing def replaceMultiple(mainString, toBeReplaces, newString):