From f5bb9b429dcaf788aff420d8703d120f54101886 Mon Sep 17 00:00:00 2001 From: w00t Date: Wed, 16 Jul 2008 11:58:28 +0000 Subject: Fix parts being screwed up, thanks psychon git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10027 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/channels.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/channels.cpp') diff --git a/src/channels.cpp b/src/channels.cpp index b9bc4992c..878fdc1a2 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -522,7 +522,7 @@ long Channel::PartUser(User *user, std::string &reason) FOREACH_MOD(I_OnUserPart,OnUserPart(user, this, reason, silent)); if (!silent) - this->WriteChannel(user, "PART %s%s%s", this->name.c_str(), reason.empty() ? "" : ":", reason.c_str()); + this->WriteChannel(user, "PART %s%s%s", this->name.c_str(), reason.empty() ? "" : " :", reason.c_str()); user->chans.erase(i); this->RemoveAllPrefixes(user); -- cgit v1.2.3