From 7cc5988dac4ebba7e18491899c32a17a66f7338f Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 14 May 2016 14:14:44 -0700 Subject: [PATCH] coreplugin: spawn main client as manipulatable --- coreplugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreplugin.py b/coreplugin.py index e85157c..ae04a21 100644 --- a/coreplugin.py +++ b/coreplugin.py @@ -256,7 +256,7 @@ utils.add_hook(handle_endburst, 'ENDBURST') # Register the main PyLink service. All command definitions MUST go after this! mynick = conf.conf['bot'].get("nick", "PyLink") myident = conf.conf['bot'].get("ident", "pylink") -utils.registerService('pylink', nick=mynick, ident=myident) +utils.registerService('pylink', nick=mynick, ident=myident, manipulatable=True) # Essential, core commands go here so that the "commands" plugin with less-important, # but still generic functions can be reloaded.