diff options
author | Adam <Adam@anope.org> | 2014-10-18 14:28:50 -0400 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-10-19 16:14:24 +0200 |
commit | 4e9006c9676f31d0845b1a5062cd36bdd1b8796c (patch) | |
tree | c04a49ea97bc4649bcefc10d22dbb86c7c0840b4 /src/modules/m_watch.cpp | |
parent | a681248b3c989667c2d025758722d2c90b444abe (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); } } |