diff options
author | Adam <Adam@anope.org> | 2010-07-10 20:58:29 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-07-10 20:58:29 -0400 |
commit | fa622aae38b7aa11ecab78412e91e262ae6fb3e3 (patch) | |
tree | aaf62febc418af7de308f41f8140b1f5b031909d /src/core/os_jupe.cpp | |
parent | 07ec79e8818d62ba1225674891eaf7fbd3e89bbd (diff) |
Fixed tracking of introducing and quitting juped servers
Diffstat (limited to 'src/core/os_jupe.cpp')
-rw-r--r-- | src/core/os_jupe.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/os_jupe.cpp b/src/core/os_jupe.cpp index 8718f95d8..341e2b28d 100644 --- a/src/core/os_jupe.cpp +++ b/src/core/os_jupe.cpp @@ -36,7 +36,7 @@ class CommandOSJupe : public Command snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", u->nick.c_str(), reason ? ": " : "", reason ? reason : ""); if (server) ircdproto->SendSquit(jserver, rbuf); - Server *juped_server = new Server(Me, jserver, 0, rbuf, ircd->ts6 ? ts6_sid_retrieve() : ""); + Server *juped_server = new Server(Me, jserver, 1, rbuf, ircd->ts6 ? ts6_sid_retrieve() : ""); juped_server->SetFlag(SERVER_JUPED); ircdproto->SendServer(juped_server); |