From 5c59d33a815af5eadb39cad8da3578106d681a56 Mon Sep 17 00:00:00 2001 From: Fabi <192151969+fabske0@users.noreply.github.com> Date: Tue, 23 Dec 2025 22:53:21 +0100 Subject: [PATCH] [UI/UX] move `unsplice` option from switch to shop (#6890) --- src/ui/handlers/party-ui-handler.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/handlers/party-ui-handler.ts b/src/ui/handlers/party-ui-handler.ts index 477ef2bf1ef..afb5dad29eb 100644 --- a/src/ui/handlers/party-ui-handler.ts +++ b/src/ui/handlers/party-ui-handler.ts @@ -1515,9 +1515,6 @@ export class PartyUiHandler extends MessageUiHandler { ); } this.addCommonOptions(pokemon); - if (this.partyUiMode === PartyUiMode.SWITCH && pokemon.isFusion()) { - this.options.push(PartyOption.UNSPLICE); - } break; case PartyUiMode.REVIVAL_BLESSING: this.options.push(PartyOption.REVIVE); @@ -1551,6 +1548,9 @@ export class PartyUiHandler extends MessageUiHandler { case PartyUiMode.CHECK: this.addCommonOptions(pokemon); if (globalScene.phaseManager.getCurrentPhase().is("SelectModifierPhase")) { + if (pokemon.isFusion()) { + this.options.push(PartyOption.UNSPLICE); + } this.options.push(PartyOption.RELEASE); const formChangeItemModifiers = this.getFormChangeItemsModifiers(pokemon); for (let i = 0; i < formChangeItemModifiers.length; i++) {