mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-14 11:57:42 +01:00
Fixing colors and NounResolver (#2208)
* Fixing colors and NounResolver * Remove failing special case NounProcessor selftest
This commit is contained in:
parent
cba1a7d18c
commit
2f029567e4
4 changed files with 4 additions and 6 deletions
|
|
@ -380,7 +380,7 @@ internal class InventoryWidget : IDataWindowWidget
|
|||
|
||||
var rowId = this.GetItemRarityColorType(item, isEdgeColor);
|
||||
return this.dataManager.Excel.GetSheet<UIColor>().TryGetRow(rowId, out var color)
|
||||
? BinaryPrimitives.ReverseEndianness(color.Light) | 0xFF000000
|
||||
? BinaryPrimitives.ReverseEndianness(color.Dark) | 0xFF000000
|
||||
: 0xFFFFFFFF;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -191,8 +191,6 @@ internal class NounProcessorAgingStep : IAgingStep
|
|||
new(nameof(LSheets.Item), 44348, ClientLanguage.French, 2, (int)FrenchArticleType.PossessiveFirstPerson, 1, "mes mémoquartz inhabituels fantasmagoriques"),
|
||||
new(nameof(LSheets.Item), 44348, ClientLanguage.French, 2, (int)FrenchArticleType.PossessiveSecondPerson, 1, "tes mémoquartz inhabituels fantasmagoriques"),
|
||||
new(nameof(LSheets.Item), 44348, ClientLanguage.French, 2, (int)FrenchArticleType.PossessiveThirdPerson, 1, "ses mémoquartz inhabituels fantasmagoriques"),
|
||||
|
||||
new(nameof(LSheets.Action), 45, ClientLanguage.German, 1, (int)FrenchArticleType.Indefinite, 1, "Blumenflüsterer IV"),
|
||||
];
|
||||
|
||||
private enum GermanCases
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue