diff options
| author | 2006-03-07 00:45:14 +0000 | |
|---|---|---|
| committer | 2006-03-07 00:45:14 +0000 | |
| commit | e307d5edb124ac535c5d0982f8207987159e4a36 (patch) | |
| tree | db30b0eb66bcc4ded3c469b5bfc613c0ecb84f56 /src/modules.cpp | |
| parent | Removed a lot of total craq (diff) | |
Fixed wtf-ery of Modules::SendTo - did i write this before WriteServ???
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3501 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 64a61c1b0..a267662df 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -535,7 +535,7 @@ void Server::SendTo(userrec* Source, userrec* Dest, std::string s) if (!Source) { // if source is NULL, then the message originates from the local server - Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str()); + WriteServ_NoFormat(Dest->fd,s.c_str()); } else { |
