mirror of
https://github.com/anope/anope.git
synced 2026-07-02 07:46:40 +02:00
Renamed OnServerConnect(Server*) event to OnNewServer, we have two OnServerConnect's which is slightly confusing...
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2566 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
+2
-2
@@ -540,7 +540,7 @@ class CoreExport Module
|
||||
/** Called when a new server connects to the network.
|
||||
* @param s The server that has connected to the network
|
||||
*/
|
||||
virtual void OnServerConnect(Server *s) { }
|
||||
virtual void OnNewServer(Server *s) { }
|
||||
|
||||
/** Called after a user changed the nick
|
||||
* @param u The user.
|
||||
@@ -956,7 +956,7 @@ enum Implementation
|
||||
I_OnDefconLevel,
|
||||
|
||||
/* Other */
|
||||
I_OnReload, I_OnPreServerConnect, I_OnServerConnect, I_OnPreCommand, I_OnPostCommand, I_OnPostLoadDatabases, I_OnSaveDatabase, I_OnBackupDatabase,
|
||||
I_OnReload, I_OnPreServerConnect, I_OnNewServer, I_OnServerConnect, I_OnPreCommand, I_OnPostCommand, I_OnPostLoadDatabases, I_OnSaveDatabase, I_OnBackupDatabase,
|
||||
I_OnPreDatabaseExpire, I_OnDatabaseExpire, I_OnPreRestart, I_OnRestart, I_OnPreShutdown, I_OnShutdown, I_OnSignal,
|
||||
I_OnServerQuit, I_OnTopicUpdated,
|
||||
I_OnEncrypt, I_OnEncryptInPlace, I_OnEncryptCheckLen, I_OnDecrypt, I_OnCheckPassword,
|
||||
|
||||
+1
-1
@@ -420,7 +420,7 @@ void do_server(const char *source, const char *servername, const char *hops,
|
||||
notice_server(s_GlobalNoticer, newserver, "%s", GlobalOnCycleUP);
|
||||
|
||||
/* Let modules know about the connection */
|
||||
FOREACH_MOD(I_OnServerConnect, OnServerConnect(newserver));
|
||||
FOREACH_MOD(I_OnNewServer, OnNewServer(newserver));
|
||||
}
|
||||
|
||||
/*************************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user