why doesn't it work? I don't know

This commit is contained in:
Luke Ogburn
2022-04-21 00:05:42 -04:00
parent 3c3acdee0b
commit 36976f6cfd
2 changed files with 2 additions and 5 deletions

3
.gitignore vendored
View File

@@ -1,3 +1,2 @@
*/
config.json
savefile.json
*.json

View File

@@ -20,14 +20,12 @@ def main():
# get settings if applicable
neuter = False
wait = 5
try:
if "autotoot" in config:
c = config["autotoot"]
if "neuter" in c:
neuter = c["neuter"].lower() == "true"
if "wait" in c:
wait = int(c["wait"])
except:
pass
print(neuter, wait)
# make bots
masto = bot(config, neuter=neuter)