X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/3569ead38c546c3ecf47754b2c79d632d694a6ac..b367d0c5869793453f81614d320a65b169926794:/modules/help.py diff --git a/modules/help.py b/modules/help.py index 97dd1de..c53500e 100644 --- a/modules/help.py +++ b/modules/help.py @@ -16,7 +16,7 @@ import modlib lib = modlib.modlib(__name__) def modstart(parent, *args, **kwargs): if parent.cfg.getboolean('erebus', 'nofakelag'): - lib.hook(needchan=False)(lib.help('[@|]', 'lists commands or describes a command', 'with @, lists all commands in ')(help_nolag)) + lib.hook('help', needchan=False)(lib.help('[@|]', 'lists commands or describes a command', 'with @, lists all commands in ')(help_nolag)) else: lib.hook(needchan=False)(lib.help("", "describes a command")(help)) return lib.modstart(parent, *args, **kwargs)