aboutsummaryrefslogtreecommitdiff
path: root/start.py
diff options
context:
space:
mode:
Diffstat (limited to 'start.py')
-rwxr-xr-xstart.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/start.py b/start.py
index 8a74f331..bb919dfe 100755
--- a/start.py
+++ b/start.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
-import argparse
+import argparse, time
import IRCBot, Config, Database
def bool_input(s):
@@ -19,6 +19,7 @@ for server in servers:
if len(bot.servers):
bot.modules.load_modules()
bot.events.on("boot").on("done").call()
+ time.sleep(5)
bot.connect_all()
bot.run()
else: