diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-13 19:27:58 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-13 19:27:58 +0000 |
commit | 4adf54ae2a1e76c82d19d1475030a7d094017fd4 (patch) | |
tree | 926173e748a53551eefc8bc71d1b5450473c505d /src/modules/m_watch.cpp | |
parent | 336c9691a599801cf87e4a5e91b516b0534c7821 (diff) |
Fix /nick signoff message
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5975 e03df62e-2008-0410-955e-edbf42e46eb7
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 fcae80cf6..d502168cf 100644 --- a/src/modules/m_watch.cpp +++ b/src/modules/m_watch.cpp @@ -361,7 +361,7 @@ class Modulewatch : public Module watchlist* wl; if ((*n)->GetExt("watchlist", wl)) { - (*n)->WriteServ("601 %s %s %s :went offline", (*n)->nick, user->nick, (*wl)[user->nick].c_str()); + (*n)->WriteServ("601 %s %s %s %s %s %lu :went offline", (*n)->nick, user->nick, user->ident, user->dhost, user->age); (*wl)[user->nick] = ""; } } |