diff --git a/_entWatch4/scripting/entWatch-core.sp b/_entWatch4/scripting/entWatch-core.sp index 3cd386db..1fc45de3 100644 --- a/_entWatch4/scripting/entWatch-core.sp +++ b/_entWatch4/scripting/entWatch-core.sp @@ -165,6 +165,15 @@ public void OnMapStart() while (hConfig.GotoNextKey()); } + if (g_bLate) + { + int entity = INVALID_ENT_REFERENCE; + while ((entity = FindEntityByClassname(entity, "*")) != INVALID_ENT_REFERENCE) + { + OnEntitySpawned(entity); + } + } + delete hConfig; return; }