Skip to content

Commit 65ccb85

Browse files
Don't block loading of items with avfx files with no textures
1 parent 351cc47 commit 65ccb85

File tree

1 file changed

+2
-3
lines changed
  • xivModdingFramework/VFX/FileTypes

1 file changed

+2
-3
lines changed

xivModdingFramework/VFX/FileTypes/Avfx.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,9 @@ await Task.Run(() =>
5252
{
5353
data = br.ReadInt32();
5454
}
55-
catch (EndOfStreamException e)
55+
catch (EndOfStreamException)
5656
{
57-
throw new System.Exception("VFX textures were detected but no texture paths could be found.\n" +
58-
"VFX textures will not be accessible.");
57+
return;
5958
}
6059
}
6160

0 commit comments

Comments
 (0)