Add special handling for 'Neophyte's Ring'

This commit is contained in:
Liza 2024-12-21 15:19:49 +01:00
parent 92f898f1c6
commit b8e5084e86
Signed by: liza
GPG Key ID: 2C41B84815CF6445
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<Project Sdk="Dalamud.NET.Sdk/11.0.0">
<PropertyGroup>
<Version>2.1</Version>
<Version>2.2</Version>
<OutputPath>dist</OutputPath>
</PropertyGroup>

View File

@ -16,6 +16,7 @@ internal sealed class ItemList
{ 24589, 70 },
{ 33648, 80 },
{ 41081, 90 },
{ 44410, 60 },
}.AsReadOnly();
public required EClassJob ClassJob { get; init; }
@ -184,7 +185,7 @@ internal sealed class ItemList
return true;
}
// if they're the same level, place the preferrd item last
// if they're the same level, place the preferred item last
if (levelSelf == other.Level)
{
priority = (byte)(levelSelf - 1);