From 5d02a8a4b66ef45053b2434dde649de6ac774e7f Mon Sep 17 00:00:00 2001 From: Eddoursul Date: Tue, 24 Oct 2023 10:46:19 +0200 Subject: [PATCH] Removed skipping unused formlists --- ESMify_Plugins.pas | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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;