diff options
Diffstat (limited to 'src/chanserv.c')
-rw-r--r-- | src/chanserv.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/chanserv.c b/src/chanserv.c index 622f823d7..a99066b86 100644 --- a/src/chanserv.c +++ b/src/chanserv.c @@ -1206,10 +1206,7 @@ void ChanServTimer::Tick(time_t) if (!c->users.empty()) return; - if (c->ci->bi) - ircdproto->SendPart(c->ci->bi, c, NULL); - else - ircdproto->SendPart(findbot(Config.s_ChanServ), c, NULL); + ircdproto->SendPart(findbot(Config.s_ChanServ), c, NULL); /* Now delete the channel as it is empty */ if (!c->HasFlag(CH_PERSIST) && !c->ci->HasFlag(CI_PERSIST)) |