diff --git a/amxmodx/modules.cpp b/amxmodx/modules.cpp index d3712e42..abdffbc7 100755 --- a/amxmodx/modules.cpp +++ b/amxmodx/modules.cpp @@ -460,6 +460,11 @@ int CheckModules(AMX *amx, char error[128]) while (a) { CModule &cm = (*a); + if (cm.getStatusValue() != MODULE_LOADED) + { + ++a; + continue; + } if (cm.getInfoNew() && cm.getInfoNew()->logtag && !strcasecmp(cm.getInfoNew()->logtag, buffer))