From: Liza Carvelli Date: Tue, 20 Aug 2024 19:57:32 +0000 (+0200) Subject: Fix nonsense use of portrait id when switching classes X-Git-Tag: v2.12~3 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=440a746e461fa9059b30046ddb18492c850357db;p=Questionable.git Fix nonsense use of portrait id when switching classes --- 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; } }