From 403c2b6e9efb358ebdcb009440d8055925ccbd92 Mon Sep 17 00:00:00 2001 From: Wlowscha <54003515+Wlowscha@users.noreply.github.com> Date: Sat, 2 Aug 2025 00:24:49 +0200 Subject: [PATCH] Offsets are relevant to the same thing --- src/ui/party-ui-handler.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/party-ui-handler.ts b/src/ui/party-ui-handler.ts index aa4df087d30..716a40a02e5 100644 --- a/src/ui/party-ui-handler.ts +++ b/src/ui/party-ui-handler.ts @@ -1924,7 +1924,7 @@ class PartySlot extends Phaser.GameObjects.Container { if (this.isBenched) { slotGenderText.setPositionRelative(slotLevelLabel, 36, 0); } else { - slotGenderText.setPositionRelative(this.slotName, 76 - (this.pokemon.fusionSpecies ? 8 : 0), 3); + slotGenderText.setPositionRelative(slotLevelLabel, 68 - (this.pokemon.fusionSpecies ? 8 : 0), -9); } slotGenderText.setOrigin(0, 0.25); @@ -1938,7 +1938,7 @@ class PartySlot extends Phaser.GameObjects.Container { if (this.isBenched) { splicedIcon.setPositionRelative(slotLevelLabel, 36 + (genderSymbol ? 8 : 0), 0.5); } else { - splicedIcon.setPositionRelative(this.slotName, 76, 3.5); + splicedIcon.setPositionRelative(slotLevelLabel, 68, 3.5 - 12); } slotInfoContainer.add(splicedIcon); }