From b8e5084e8637244668356014fd6c8e594e507735 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sat, 21 Dec 2024 15:19:49 +0100 Subject: [PATCH] Add special handling for 'Neophyte's Ring' --- Gearsetter/Gearsetter.csproj | 2 +- Gearsetter/Model/ItemList.cs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Gearsetter/Gearsetter.csproj b/Gearsetter/Gearsetter.csproj index f5ca3de..deb8fb8 100644 --- a/Gearsetter/Gearsetter.csproj +++ b/Gearsetter/Gearsetter.csproj @@ -1,6 +1,6 @@ - 2.1 + 2.2 dist diff --git a/Gearsetter/Model/ItemList.cs b/Gearsetter/Model/ItemList.cs index 86460c7..55e95eb 100644 --- a/Gearsetter/Model/ItemList.cs +++ b/Gearsetter/Model/ItemList.cs @@ -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);