From fb92cd2d12e3c48d4228e24d5c4b16eb2d18056c Mon Sep 17 00:00:00 2001 From: fo76utils <87907510+fo76utils@users.noreply.github.com> Date: Thu, 4 Apr 2024 18:19:05 +0200 Subject: [PATCH] Fixed extracting Fallout 76 textures --- src/spells/fileextract.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spells/fileextract.cpp b/src/spells/fileextract.cpp index b5eb38dd..57ba5e25 100644 --- a/src/spells/fileextract.cpp +++ b/src/spells/fileextract.cpp @@ -49,7 +49,7 @@ class spResourceFileExtract final : public Spell } if ( item->parent() && item->parent()->name() == "Textures" ) break; - if ( item->name() == "Path" || item->name() == "Mesh Path" ) + if ( item->name() == "Path" || item->name() == "Mesh Path" || item->name().startsWith( "Texture " ) ) break; return false; } while ( false );