diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-26 21:33:34 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-26 21:33:34 +0000 |
commit | 336e8f1bb4be9440521d81a6f1c0be505be801de (patch) | |
tree | 9029f9ffa2a7992851fab544b5cd961dfb22c8c8 /src | |
parent | 53e521785f75f9a3f8be7f8110a8af65fcaff410 (diff) |
Fixed missing I_On005Numeric
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2668 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_park.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_park.cpp b/src/modules/m_park.cpp index 6be28d950..9deb0c682 100644 --- a/src/modules/m_park.cpp +++ b/src/modules/m_park.cpp @@ -234,7 +234,7 @@ class ModulePark : public Module void Implements(char* List) { - List[I_OnRehash] = List[I_OnUserQuit] = List[I_OnUserPreMessage] = List[I_OnUserPreNick] = List[I_OnBackgroundTimer] = List[I_OnWhois] = 1; + List[I_On005Numeric] = List[I_OnRehash] = List[I_OnUserQuit] = List[I_OnUserPreMessage] = List[I_OnUserPreNick] = List[I_OnBackgroundTimer] = List[I_OnWhois] = 1; } virtual void OnRehash(std::string parameter) |