added a forward that helps prevent against race conditions in map config plugins
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%402162
This commit is contained in:
@@ -168,6 +168,23 @@ forward OnMapEnd();
|
||||
*/
|
||||
forward OnConfigsExecuted();
|
||||
|
||||
/**
|
||||
* This is called once, right after OnMapStart() but any time before
|
||||
* OnConfigsExecuted(). It is called after the "exec sourcemod.cfg"
|
||||
* command and all AutoExecConfig() exec commands have been added to
|
||||
* the ServerCommand() buffer.
|
||||
*
|
||||
* If you need to load per-map settings that override default values,
|
||||
* adding commands to the ServerCommand() buffer here will guarantee
|
||||
* that they're set before OnConfigsExecuted().
|
||||
*
|
||||
* Unlike OnMapStart() and OnConfigsExecuted(), this is not called on
|
||||
* late loads that occur after OnMapStart().
|
||||
*
|
||||
* @noreturn
|
||||
*/
|
||||
forward OnAutoConfigsBuffered();
|
||||
|
||||
/**
|
||||
* @deprecated Use OnConfigsExecuted() instead.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user