From ac76b814216b59014fbcfd3592218fbcb1480870 Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 7 Sep 2018 13:49:36 +0100 Subject: [PATCH] Support server-time, even if it's ignored for the moment --- IRCLineHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRCLineHandler.py b/IRCLineHandler.py index b3a7ee1c..d9c65126 100644 --- a/IRCLineHandler.py +++ b/IRCLineHandler.py @@ -9,7 +9,7 @@ RE_MODES = re.compile(r"[-+]\w+") CAPABILITIES = {"multi-prefix", "chghost", "invite-notify", "account-tag", "account-notify", "extended-join", "away-notify", "userhost-in-names", - "draft/message-tags-0.2"} + "draft/message-tags-0.2", "server-time"} class LineHandler(object): def __init__(self, bot, events):