Skip to content

Commit

Permalink
Fixed extracting Fallout 76 textures
Browse files Browse the repository at this point in the history
  • Loading branch information
fo76utils committed Apr 4, 2024
1 parent e7db6c2 commit fb92cd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spells/fileextract.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down

0 comments on commit fb92cd2

Please sign in to comment.