From bf85cfe4b98b4afae512e7bf8335f1c16226b225 Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Mon, 19 Jul 2021 12:14:35 +0200 Subject: [PATCH] Fix files in single groups being added to effective files again with their relative path. --- Penumbra/Structs/GroupInformation.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Penumbra/Structs/GroupInformation.cs b/Penumbra/Structs/GroupInformation.cs index 0e574d1d..9c533559 100644 --- a/Penumbra/Structs/GroupInformation.cs +++ b/Penumbra/Structs/GroupInformation.cs @@ -74,6 +74,7 @@ namespace Penumbra.Structs if( Options[ i ].OptionFiles.TryGetValue( relPath, out var groupPaths ) ) { paths.UnionWith( groupPaths ); + doNotAdd = true; } } else if( Options[ i ].OptionFiles.ContainsKey( relPath ) )