Removed skipping unused formlists
This commit is contained in:
parent
dfde75ef4e
commit
5d02a8a4b6
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user