mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-20 07:12:32 +02:00
Fix src/ui/summary-ui-handler.ts using old Type
This commit is contained in:
parent
c5fb5191a1
commit
a729528598
@ -799,7 +799,7 @@ export default class SummaryUiHandler extends UiHandler {
|
||||
if (globalScene.gameData.achvUnlocks.hasOwnProperty(achvs.TERASTALLIZE.id) && !Utils.isNullOrUndefined(this.pokemon)) {
|
||||
const teraIcon = globalScene.add.sprite(123, 26, "button_tera");
|
||||
teraIcon.setName("terrastallize-icon");
|
||||
teraIcon.setFrame(Type[this.pokemon.getTeraType()].toLowerCase());
|
||||
teraIcon.setFrame(PokemonType[this.pokemon.getTeraType()].toLowerCase());
|
||||
profileContainer.add(teraIcon);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user