added deprecation warning

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40985
This commit is contained in:
David Anderson 2007-06-18 07:09:47 +00:00
parent 254fc2557a
commit db5c7cdc80

View File

@ -73,7 +73,7 @@ public Plugin:myinfo;
forward OnPluginStart(); forward OnPluginStart();
/** /**
* Called before OnPluginStart, in case the plugin wants to check for load failure. * Called before OnPluginStart, in case the plugin wants to check for load failure.
* This is called even if the plugin type is "private." Any natives from modules are * This is called even if the plugin type is "private." Any natives from modules are
* not available at this point. Thus, this forward should only be used for explicit * not available at this point. Thus, this forward should only be used for explicit
* pre-emptive things, such as adding dynamic natives, or setting certain types of load filters. * pre-emptive things, such as adding dynamic natives, or setting certain types of load filters.
@ -136,6 +136,11 @@ forward OnMapEnd();
*/ */
forward OnConfigsExecuted(); forward OnConfigsExecuted();
/**
* @deprecated Use OnConfigsExecuted() instead.
*/
forward OnServerCfg();
/** /**
* Returns the calling plugin's Handle. * Returns the calling plugin's Handle.
* *