added bot ID to the minimum version
This commit is contained in:
parent
5be3b9645b
commit
cf730ccda4
1 changed files with 3 additions and 1 deletions
|
@ -14,8 +14,10 @@ if version == 'A' or 'a':
|
||||||
prefix = input()
|
prefix = input()
|
||||||
print('Owner ID?')
|
print('Owner ID?')
|
||||||
ownerID = input()
|
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:
|
with open("config.json", "w") as outfile:
|
||||||
json.dump(data, outfile)
|
json.dump(data, outfile)
|
||||||
quit()
|
quit()
|
||||||
|
|
Loading…
Reference in a new issue