diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2023-12-16 06:30:12 -0600 |
---|---|---|
committer | TinWoodman92 <chrhodgden@gmail.com> | 2023-12-16 06:30:12 -0600 |
commit | 28e5a9cbc2430ff33ec117ccf9fa6ab9f6e321b3 (patch) | |
tree | a6a72b5f9783fc390011c0e11d19819ff471fd3a | |
parent | 158b36e51c8c2925d6c8af6e08380369d019378e (diff) |
Removed database from repository. New repos will initialize thier own databases.
-rw-r--r-- | games.db | bin | 20480 -> 0 bytes | |||
-rw-r--r-- | play.py | 6 |
2 files changed, 6 insertions, 0 deletions
diff --git a/games.db b/games.db Binary files differdeleted file mode 100644 index 3915a40..0000000 --- a/games.db +++ /dev/null @@ -1,3 +1,9 @@ +import subprocess +import os + +if not os.path.exists(os.path.join(os.getcwd(), 'games.db')): + subprocess.run(['python', 'crt_db.py']) + from load_nav import * menu_tree = [None, None, mm_menu] |