Hide V2 Saves

This commit is contained in:
Henk 2022-10-23 19:03:18 +02:00
parent 2300fb46ff
commit 442a9760b8
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ def uspath(filename):
def getstoryfiles():
list = []
for file in listdir("stories"):
if file.endswith(".json"):
if file.endswith(".json") and not file.endswith(".v2.json"):
ob = {}
ob["name"] = file.replace(".json", "")
f = open("stories/"+file, "r")