From 1c0f7a70244ac37ff1658af67db62bcb23b14f13 Mon Sep 17 00:00:00 2001 From: Thorsten Date: Fri, 27 May 2016 20:38:40 +0200 Subject: [PATCH] disable add_to_botlist --- plugins/commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/commands.py b/plugins/commands.py index 2193bfe..8703068 100644 --- a/plugins/commands.py +++ b/plugins/commands.py @@ -621,8 +621,9 @@ def remove_from_botlist(argv, **args): return False -@pluginfunction("add-to-botlist", "add a user to the botlist", ptypes.COMMAND) +@pluginfunction("add-to-botlist", "add a user to the botlist", ptypes.COMMAND, enabled=False) def add_to_botlist(argv, **args): + return {'msg': 'feature disabled until channel separation'} if not argv: return {'msg': "wrong number of arguments!"} suspect = argv[0]