1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 16:16:38 +02:00

Merge pull request #147 from miwob/temporary_xline

Update SendSGLine() in hybrid's protocol module to add support for te…
This commit is contained in:
Adam
2016-01-23 09:18:12 -06:00
+1 -1
View File
@@ -79,7 +79,7 @@ class HybridProto : public IRCDProto
void SendSGLine(User *, const XLine *x) anope_override
{
UplinkSocket::Message(Config->GetClient("OperServ")) << "XLINE * " << x->mask << " 0 :" << x->GetReason();
UplinkSocket::Message(Config->GetClient("OperServ")) << "XLINE * " << x->mask << " " (x->expires ? x->expires - Anope::CurTime : 0) " :" << x->GetReason();
}
void SendSZLineDel(const XLine *x) anope_override