From 70132b6aea9a5bc4425ddcdd5b7ea85d829c08ae Mon Sep 17 00:00:00 2001 From: Robert Wall Date: Sun, 23 Jun 2013 16:06:21 -0700 Subject: [PATCH] Make the help command always reply in PM to reduce spamminess --- modules/wolfgame.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules/wolfgame.py b/modules/wolfgame.py index ac1084f..d039f8a 100644 --- a/modules/wolfgame.py +++ b/modules/wolfgame.py @@ -2635,10 +2635,7 @@ def get_help(cli, rnick, rest): @cmd("help", raw_nick = True) def help2(cli, nick, chan, rest): """Gets help""" - if rest.strip(): # command was given - get_help(cli, chan, rest) - else: - get_help(cli, nick, rest) + get_help(cli, nick, rest) @hook("invite", raw_nick = False, admin_only = True)