diff options
| author | 2014-10-18 14:28:50 -0400 | |
|---|---|---|
| committer | 2014-10-19 16:14:24 +0200 | |
| commit | 4e9006c9676f31d0845b1a5062cd36bdd1b8796c (patch) | |
| tree | c04a49ea97bc4649bcefc10d22dbb86c7c0840b4 /src/modules/m_watch.cpp | |
| parent | m_delayjoin Only send JOIN on mode change if the mode being changed is a pref... (diff) | |
Fix watch away numerics, #937
Diffstat (limited to 'src/modules/m_watch.cpp')
| -rw-r--r-- | src/modules/m_watch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_watch.cpp b/src/modules/m_watch.cpp index 074ce37ad..a86483291 100644 --- a/src/modules/m_watch.cpp +++ b/src/modules/m_watch.cpp @@ -417,7 +417,7 @@ class Modulewatch : public Module { for (std::deque<User*>::iterator n = x->second.begin(); n != x->second.end(); n++) { - (*n)->WriteNumeric(inum, numeric); + (*n)->WriteNumeric(inum, (*n)->nick + " " + numeric); } } |
