diff --git a/ESMify_Plugins.pas b/ESMify_Plugins.pas index 91addf2..f7447c6 100644 --- a/ESMify_Plugins.pas +++ b/ESMify_Plugins.pas @@ -38,10 +38,6 @@ begin if (sig = 'LCTN') or (sig = 'WRLD') or (sig = 'TES4') then continue; - // Do not consider unused formlist a reference - if (sig = 'FLST') and (ReferencedByCount(referencingRecord) = 0) then - continue; - // Only check plugins higher in the load order. // This will include non-masters as well, and will not take references from plugins lower in the load order into consideration. if GetLoadOrder(GetFile(referencingRecord)) <= GetLoadOrder(GetFile(rec)) then begin @@ -201,6 +197,11 @@ begin end; end; +function Initialize: integer; +begin + AddMessage('All done.'); +end; + function Process(e: IInterface): integer; var currentPlugin: IwbFile;