summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bots.cpp8
-rw-r--r--src/nickserv.cpp2
2 files changed, 9 insertions, 1 deletions
diff --git a/src/bots.cpp b/src/bots.cpp
index 07ea91b3a..1f7b118d8 100644
--- a/src/bots.cpp
+++ b/src/bots.cpp
@@ -64,6 +64,14 @@ BotInfo::BotInfo(const Anope::string &nnick, const Anope::string &nuser, const A
BotInfo::~BotInfo()
{
+ // If we're synchronised with the uplink already, send the bot.
+ if (Me && Me->IsSynced())
+ {
+ ircdproto->SendQuit(this, NULL);
+ XLine x(this->nick);
+ ircdproto->SendSQLineDel(&x);
+ }
+
for (registered_channel_map::const_iterator it = RegisteredChannelList.begin(), it_end = RegisteredChannelList.end(); it != it_end; ++it)
{
ChannelInfo *ci = it->second;
diff --git a/src/nickserv.cpp b/src/nickserv.cpp
index 6212c7d3e..63abf59b3 100644
--- a/src/nickserv.cpp
+++ b/src/nickserv.cpp
@@ -68,7 +68,7 @@ NickServRelease::~NickServRelease()
{
NickServReleases.erase(this->nick);
- ircdproto->SendQuit(debug_cast<User *>(this), NULL);
+ ircdproto->SendQuit(this, NULL);
}
void NickServRelease::Tick(time_t)