From 5b9ed2ef94bd7cb03d84281a281e131aae544652 Mon Sep 17 00:00:00 2001 From: Thorsten Date: Fri, 27 May 2016 20:44:35 +0200 Subject: [PATCH] disable repeater --- plugins/commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/commands.py b/plugins/commands.py index 8703068..4d67795 100644 --- a/plugins/commands.py +++ b/plugins/commands.py @@ -775,8 +775,9 @@ def raise_an_error(argv, **args): raise RuntimeError("Exception for debugging") -@pluginfunction('repeat', 'repeat the last message', ptypes.COMMAND) +@pluginfunction('repeat', 'repeat the last message', ptypes.COMMAND, enabled=False) def repeat_message(argv, **args): + return {'msg': 'disabled until channel separation'} return { 'msg': args['stack'][-1]['body'] }