From 440a746e461fa9059b30046ddb18492c850357db Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Tue, 20 Aug 2024 21:57:32 +0200 Subject: [PATCH] Fix nonsense use of portrait id when switching classes --- Questionable/Controller/Steps/Shared/SwitchClassJob.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Questionable/Controller/Steps/Shared/SwitchClassJob.cs b/Questionable/Controller/Steps/Shared/SwitchClassJob.cs index 4a4fa4c0..bacd4b7d 100644 --- a/Questionable/Controller/Steps/Shared/SwitchClassJob.cs +++ b/Questionable/Controller/Steps/Shared/SwitchClassJob.cs @@ -21,7 +21,7 @@ internal sealed class SwitchClassJob(EClassJob classJob, IClientState clientStat var gearset = gearsetModule->GetGearset(i); if (gearset->ClassJob == (byte)classJob) { - gearsetModule->EquipGearset(gearset->Id, gearset->BannerIndex); + gearsetModule->EquipGearset(gearset->Id); return true; } }