From cf730ccda476d625caae800b76bbbf76563dc16d Mon Sep 17 00:00:00 2001 From: Supositware Date: Thu, 11 Apr 2019 18:17:02 +0200 Subject: [PATCH] added bot ID to the minimum version --- buildConfig.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/buildConfig.py b/buildConfig.py index 95947e15..5f6d3749 100644 --- a/buildConfig.py +++ b/buildConfig.py @@ -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()