Implement removing servers and rename some commands

This commit is contained in:
2017-11-23 18:45:18 +00:00
parent 587c3bb87c
commit 12be21fb4e
3 changed files with 19 additions and 3 deletions

View File

@@ -171,7 +171,7 @@ class Helper(object):
info("\n".join(poolMap))
return
elif cmd == "connect":
elif cmd == "add":
if length == 6:
if spl[1] in pool.keys():
@@ -193,7 +193,21 @@ class Helper(object):
self.savePool()
return
else:
incUsage("connect")
incUsage("add")
return
elif cmd == "del":
if length == 2:
if not spl[1] in pool.keys():
failure("Name does not exist: %s" % spl[1])
return
del pool[spl[1]]
success("Successfully removed bot")
self.savePool()
return
else:
incUsage("del")
return
else: