From df2d8c2e4e9f20b7c7e85fb74eccda55fea0e8d5 Mon Sep 17 00:00:00 2001 From: Eddoursul Date: Tue, 24 Oct 2023 19:27:17 +0200 Subject: [PATCH] Treat quest aliases as objects in the same cell (they are persistent dynamically) --- ESMify_Plugins.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ESMify_Plugins.pas b/ESMify_Plugins.pas index ad7f773..deeede7 100644 --- a/ESMify_Plugins.pas +++ b/ESMify_Plugins.pas @@ -216,7 +216,7 @@ begin linkedRef := LinksTo(ElementByPath(inputVal, 'PLDT\Reference')); if FormID(linkedRef) = $14 then continue; if InSameCell(e, linkedRef) then continue; - else if (packageLoc = 'Alias (location)') or (packageLoc = 'Alias (reference)') then + else if (packageLoc = 'Alias (location)') or (packageLoc = 'Alias (reference)') then begin // Quest aliases become persistent dynamically continue; end;