From 6ab1d0dffb8084bf6a2ad8a446a3836fa3760c8a Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 8 Aug 2006 14:17:35 +0000 Subject: WriteChannel* functions and ChanExceptSender* functions are now methods of chanrec. They probably should be renamed too eventually. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4788 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_remove.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/m_remove.cpp') diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index bab5ea11b..7452b2f33 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -182,7 +182,7 @@ class RemoveBase /* Build up the part reason string. */ reason << "Removed by " << user->nick << reasonparam; - WriteChannelWithServ(Srv->GetServerName().c_str(), channel, "NOTICE %s :%s removed %s from the channel", channel->name, user->nick, target->nick); + channel->WriteChannelWithServ(Srv->GetServerName().c_str(), "NOTICE %s :%s removed %s from the channel", channel->name, user->nick, target->nick); WriteServ(target->fd, "NOTICE %s :*** %s removed you from %s with the message: %s", target->nick, user->nick, channel->name, reasonparam.c_str()); if (!channel->PartUser(target, reason.str().c_str())) -- cgit v1.2.3