added bot ID to the minimum version

merge-requests/3/head
Supositware 5 years ago
parent 5be3b9645b
commit cf730ccda4

@ -14,8 +14,10 @@ if version == 'A' or 'a':
prefix = input()
print('Owner ID?')
ownerID = input()
print('Bot ID?')
botID = input()
data = {'token': token, 'prefix': [ prefix ], 'ownerID': ownerID}
data = {'token': token, 'prefix': [ prefix ], 'ownerID': ownerID, 'botID': botID}
with open("config.json", "w") as outfile:
json.dump(data, outfile)
quit()

Loading…
Cancel
Save