mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-03 14:23:43 +01:00
Add some checks for valid variants in IMC Meta Edits.
This commit is contained in:
parent
a01f73cde4
commit
33b4905ae2
7 changed files with 39 additions and 16 deletions
|
|
@ -963,7 +963,7 @@ public class PenumbraApi : IDisposable, IPenumbraApi
|
|||
}
|
||||
|
||||
manips = new HashSet< MetaManipulation >( manipArray!.Length );
|
||||
foreach( var manip in manipArray )
|
||||
foreach( var manip in manipArray.Where( m => m.ManipulationType != MetaManipulation.Type.Unknown ) )
|
||||
{
|
||||
if( !manips.Add( manip ) )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue