diff options
| author | 2007-02-07 17:03:15 +0000 | |
|---|---|---|
| committer | 2007-02-07 17:03:15 +0000 | |
| commit | 0b34769b9e3b9e823763cfd8bf3e2d64c2426710 (patch) | |
| tree | 177b1a11f15c3fea8a9c72cd79b99c114d4defb3 /src/modules/m_services.cpp | |
| parent | Extra safety checks while exchanging certs, just in case (diff) | |
| download | inspircd++-0b34769b9e3b9e823763cfd8bf3e2d64c2426710.tar.gz inspircd++-0b34769b9e3b9e823763cfd8bf3e2d64c2426710.tar.bz2 inspircd++-0b34769b9e3b9e823763cfd8bf3e2d64c2426710.zip | |
Fix for bug #205 reported by nenolod (modules that erroneously check remote users to apply privmsg/notice restrictions)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6532 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_services.cpp')
| -rw-r--r-- | src/modules/m_services.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/m_services.cpp b/src/modules/m_services.cpp index 207079da0..5da01f979 100644 --- a/src/modules/m_services.cpp +++ b/src/modules/m_services.cpp @@ -222,6 +222,9 @@ class ModuleServices : public Module virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list) { + if (!IS_LOCAL(user)) + return 0; + if (target_type == TYPE_CHANNEL) { chanrec* c = (chanrec*)dest; |
