From f3537db180d1376562becb5dfc35ae8d7d3767e3 Mon Sep 17 00:00:00 2001 From: Asval Date: Sat, 20 Apr 2019 17:18:52 +0200 Subject: [PATCH] Fixed issue with currentUsedPAKGUID not updating after loading a dynamic pak then all paks --- FModel/MainWindow.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/FModel/MainWindow.cs b/FModel/MainWindow.cs index fde72795..826cb8f9 100644 --- a/FModel/MainWindow.cs +++ b/FModel/MainWindow.cs @@ -571,6 +571,9 @@ namespace FModel File.AppendAllLines(DefaultOutputPath + "\\FortnitePAKs.txt", currentUsedPAKLines); File.Delete(DefaultOutputPath + "\\" + arCurrentUsedPAK + ".txt"); + + currentUsedPAK = null; + currentUsedPAKGUID = null; } } }