Skip to content

Commit

Permalink
Fix glasses issue with resource trees.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ottermandias committed Nov 22, 2024
1 parent 234130c commit 06ba0ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private unsafe GenderRace ResolveEqdpRaceCode(uint slotIndex, PrimaryId primaryI
if (characterRaceCode == GenderRace.MidlanderMale)
return GenderRace.MidlanderMale;

var accessory = slotIndex >= 5;
var accessory = IsEquipmentSlot(slotIndex);
if ((ushort)characterRaceCode % 10 != 1 && accessory)
return GenderRace.MidlanderMale;

Expand Down

0 comments on commit 06ba0ba

Please sign in to comment.