Offsets are relevant to the same thing

This commit is contained in:
Wlowscha 2025-08-02 00:24:49 +02:00
parent 57cc77a937
commit 403c2b6e9e
No known key found for this signature in database
GPG Key ID: 3C8F1AD330565D04

View File

@ -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);
}