mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 10:17:22 +01:00
Fix LFinger not being valid for IMC files.
This commit is contained in:
parent
edcfea5701
commit
9950604867
1 changed files with 2 additions and 2 deletions
|
|
@ -161,7 +161,7 @@ public readonly struct ImcManipulation : IMetaManipulation< ImcManipulation >
|
|||
case ObjectType.Equipment:
|
||||
if (BodySlot is not BodySlot.Unknown)
|
||||
return false;
|
||||
if (!EquipSlot.IsEquipmentPiece())
|
||||
if (!EquipSlot.IsEquipment() && !EquipSlot.IsAccessory())
|
||||
return false;
|
||||
if (SecondaryId != 0)
|
||||
return false;
|
||||
|
|
@ -169,7 +169,7 @@ public readonly struct ImcManipulation : IMetaManipulation< ImcManipulation >
|
|||
case ObjectType.DemiHuman:
|
||||
if (BodySlot is not BodySlot.Unknown)
|
||||
return false;
|
||||
if (!EquipSlot.IsEquipmentPiece())
|
||||
if (!EquipSlot.IsEquipment() && !EquipSlot.IsAccessory())
|
||||
return false;
|
||||
break;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue