MCPcopy Create free account
hub / github.com/alliedmodders/sourcemod / SM_DoSingleExecFwds

Function SM_DoSingleExecFwds

core/CoreConfig.cpp:734–747  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

732}
733
734void SM_DoSingleExecFwds(IPluginContext *ctx)
735{
736 IPluginFunction *pf;
737
738 if ((pf = ctx->GetFunctionByName("OnServerCfg")) != NULL)
739 {
740 pf->Execute(NULL);
741 }
742
743 if ((pf = ctx->GetFunctionByName("OnConfigsExecuted")) != NULL)
744 {
745 pf->Execute(NULL);
746 }
747}
748
749void SM_ConfigsExecuted_Plugin(unsigned int serial)
750{

Callers 2

SM_ExecuteForPluginFunction · 0.85

Calls 1

ExecuteMethod · 0.45

Tested by

no test coverage detected