fix typos in object names

This commit is contained in:
fabske0 2025-08-07 12:22:35 +02:00 committed by Sirz Benjie
parent 9b94e9853b
commit cf298da2f8
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E
3 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ export class CommandUiHandler extends UiHandler {
ui.add(this.commandsContainer);
this.teraButton = globalScene.add.sprite(-32, 15, "button_tera");
this.teraButton.setName("terrastallize-button");
this.teraButton.setName("terastallize-button");
this.teraButton.setScale(1.3);
this.teraButton.setFrame("fire");
this.teraButton.setPipeline(globalScene.spritePipeline, {

View File

@ -901,7 +901,7 @@ export class StarterSelectUiHandler extends MessageUiHandler {
this.pokemonEggMovesContainer.add(eggMoveContainer);
}
this.teraIcon = globalScene.add.sprite(85, 63, "button_tera").setName("terrastallize-icon").setFrame("fire");
this.teraIcon = globalScene.add.sprite(85, 63, "button_tera").setName("terastallize-icon").setFrame("fire");
// The font size should be set per language
const instructionTextSize = textSettings.instructionTextSize;

View File

@ -879,7 +879,7 @@ export class SummaryUiHandler extends UiHandler {
!isNullOrUndefined(this.pokemon)
) {
const teraIcon = globalScene.add.sprite(123, 26, "button_tera");
teraIcon.setName("terrastallize-icon");
teraIcon.setName("terastallize-icon");
teraIcon.setFrame(PokemonType[this.pokemon.getTeraType()].toLowerCase());
profileContainer.add(teraIcon);
}