diff --git a/coremods/handlers.py b/coremods/handlers.py index ebf2b0b..f262eb1 100644 --- a/coremods/handlers.py +++ b/coremods/handlers.py @@ -98,6 +98,9 @@ def handle_whois(irc, source, command, args): # Show botmode info in WHOIS. f(335, source, "%s :is a bot" % nick) + # :charybdis.midnight.vpn 317 GL GL 1946 1499867833 :seconds idle, signon time + f(317, source, "%s 0 %s :seconds idle (placeholder), signon time" % (nick, irc.start_ts)) + # Call custom WHOIS handlers via the PYLINK_CUSTOM_WHOIS hook, unless the # caller is marked a bot and the whois_show_extensions_to_bots option is False if (source_is_bot and conf.conf['bot'].get('whois_show_extensions_to_bots')) or (not source_is_bot):