mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-13 12:14:17 +01:00
Remove some further Unknown Unknown identifications.
This commit is contained in:
parent
c3a3a2cd35
commit
bf58c6b098
2 changed files with 14 additions and 2 deletions
|
|
@ -290,10 +290,16 @@ internal class ObjectIdentification : IObjectIdentifier
|
|||
case CustomizationType.DecalFace:
|
||||
set[ $"Customization: Face Decal {info.PrimaryId}" ] = null;
|
||||
break;
|
||||
case CustomizationType.Iris when race == ModelRace.Unknown:
|
||||
set[ $"Customization: All Eyes (Catchlight)" ] = null;
|
||||
break;
|
||||
default:
|
||||
{
|
||||
var customizationString =
|
||||
$"Customization: {race} {gender} {info.BodySlot} ({info.CustomizationType}) {info.PrimaryId}";
|
||||
var customizationString = race == ModelRace.Unknown
|
||||
|| info.BodySlot == BodySlot.Unknown
|
||||
|| info.CustomizationType == CustomizationType.Unknown
|
||||
? "Customization: Unknown"
|
||||
: $"Customization: {race} {gender} {info.BodySlot} ({info.CustomizationType}) {info.PrimaryId}";
|
||||
set[ customizationString ] = null;
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue