diff options
| author | 2014-01-05 15:20:17 +0100 | |
|---|---|---|
| committer | 2014-01-05 15:20:17 +0100 | |
| commit | 9136136ac373a922cd0875f77d3212a419fb9100 (patch) | |
| tree | 385afcb56e62de5a39bed1d7bf6d5311cc001df9 /src/modules.cpp | |
| parent | Introduce Server class (diff) | |
| download | inspircd++-9136136ac373a922cd0875f77d3212a419fb9100.tar.gz inspircd++-9136136ac373a922cd0875f77d3212a419fb9100.tar.bz2 inspircd++-9136136ac373a922cd0875f77d3212a419fb9100.zip | |
Move server description field from TreeServer into Server; remove OnGetServerDescription hook
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 2157d1948..5c5e4febc 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -132,7 +132,6 @@ void Module::OnPostConnect(User*) { DetachEvent(I_OnPostConnect); } void Module::OnUserMessage(User*, void*, int, const std::string&, char, const CUList&, MessageType) { DetachEvent(I_OnUserMessage); } void Module::OnUserInvite(User*, User*, Channel*, time_t) { DetachEvent(I_OnUserInvite); } void Module::OnPostTopicChange(User*, Channel*, const std::string&) { DetachEvent(I_OnPostTopicChange); } -void Module::OnGetServerDescription(const std::string&, std::string&) { DetachEvent(I_OnGetServerDescription); } void Module::OnSyncUser(User*, ProtocolInterface::Server&) { DetachEvent(I_OnSyncUser); } void Module::OnSyncChannel(Channel*, ProtocolInterface::Server&) { DetachEvent(I_OnSyncChannel); } void Module::OnSyncNetwork(ProtocolInterface::Server&) { DetachEvent(I_OnSyncNetwork); } |
