From: w00t Date: Wed, 16 Jul 2008 11:58:28 +0000 (+0000) Subject: Fix parts being screwed up, thanks psychon X-Git-Tag: v2.0.23~2913 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=f5bb9b429dcaf788aff420d8703d120f54101886;p=user%2Fhenk%2Fcode%2Finspircd.git Fix parts being screwed up, thanks psychon git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10027 e03df62e-2008-0410-955e-edbf42e46eb7 --- 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);