From cbd557e6e7b5ece3a07a0114c6abc579d3dc96ec Mon Sep 17 00:00:00 2001 From: iAmAsval Date: Sun, 21 Jun 2020 03:12:48 +0200 Subject: [PATCH] fixed backing up paks with no key + friendly reminder --- FModel/ViewModels/MenuItem/BackupMenuItemViewModel.cs | 2 +- README.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/FModel/ViewModels/MenuItem/BackupMenuItemViewModel.cs b/FModel/ViewModels/MenuItem/BackupMenuItemViewModel.cs index 8626f13e..40335420 100644 --- a/FModel/ViewModels/MenuItem/BackupMenuItemViewModel.cs +++ b/FModel/ViewModels/MenuItem/BackupMenuItemViewModel.cs @@ -150,7 +150,7 @@ namespace FModel.ViewModels.MenuItem using BinaryWriter writer = new BinaryWriter(compressionStream); foreach (PakFileReader pakFile in MenuItems.pakFiles.GetPakFileReaders()) { - if (pakFile.AesKey == null) + if (pakFile.Info.bEncryptedIndex && pakFile.AesKey == null) continue; if (!Globals.CachedPakFiles.ContainsKey(pakFile.FileName)) diff --git a/README.md b/README.md index f10e7477..c243a09d 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,11 @@ FModel Logo -Created in March 2019, FModel is a .PAK file explorer fully dedicated to Fortnite but also work with some other Unreal Engine's games. It quickly became popular through leakers who used it to quickly generate images of new cosmetics added to the game. +Created in March 2019, FModel is a .PAK file explorer fully dedicated to Fortnite but also work with some other Unreal Engine's games. It quickly became popular to quickly generate images of new cosmetics added to the game. Over time, new features got added and new users discovered the program. +Friendly reminder, using FModel for Fortnite doesn't make you a leaker so please don't call yourself a leaker. + ## Table of Contents - [Introduction](#introduction)