🐛
This commit is contained in:
@@ -204,6 +204,16 @@ def makeFiles():
|
|||||||
f.write("The Room")
|
f.write("The Room")
|
||||||
finally:
|
finally:
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
|
# Creates names.txt if it doesn't exist
|
||||||
|
try:
|
||||||
|
f = open("resources/names.txt","r")
|
||||||
|
except:
|
||||||
|
logThis("names.txt didn't exist. Making it now.")
|
||||||
|
with open("resources/names.txt","w") as f:
|
||||||
|
f.write("Gandalf")
|
||||||
|
finally:
|
||||||
|
f.close()
|
||||||
|
|
||||||
# Creates token.txt if it doesn't exist
|
# Creates token.txt if it doesn't exist
|
||||||
try:
|
try:
|
||||||
|
|||||||
Reference in New Issue
Block a user