mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-13 20:24:17 +01:00
Fix some ToDos, parallelization problems.
This commit is contained in:
parent
0ed94676ed
commit
8ea6893fc3
15 changed files with 50 additions and 41 deletions
|
|
@ -46,6 +46,9 @@ public readonly struct EquipItem
|
|||
Type = type;
|
||||
}
|
||||
|
||||
public string ModelString
|
||||
=> WeaponType == 0 ? $"{ModelId.Value}-{Variant}" : $"{ModelId.Value}-{WeaponType.Value}-{Variant}";
|
||||
|
||||
public static implicit operator EquipItem(PseudoEquipItem it)
|
||||
=> new(it.Item1, it.Item2, it.Item3, it.Item4, it.Item5, it.Item6, (FullEquipType)it.Item7);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue