Review Suggestions: Reformatting

Small edits to formatting as requested by flx

Co-authored-by: flx-sta <50131232+flx-sta@users.noreply.github.com>
This commit is contained in:
RedstonewolfX 2024-08-26 12:04:53 -04:00 committed by GitHub
parent ae33a46945
commit 1b558cd945
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -1549,7 +1549,7 @@ export default class BattleScene extends SceneBase {
this.scoreText.setVisible(this.gameMode.isDaily);
}
updateAndShowText(duration: integer, isDaily?: boolean): void {
updateAndShowText(duration: number, isDaily?: boolean): void {
const labels = [ this.luckLabelText, this.luckText ];
labels.forEach(t => t.setAlpha(0));
const luckValue = getPartyLuckValue(this.getParty());

View File

@ -28,7 +28,7 @@ import { BerryType } from "#enums/berry-type";
import { Moves } from "#enums/moves";
import { Species } from "#enums/species";
import { getPokemonNameWithAffix } from "#app/messages.js";
import { GameModes } from "#app/game-mode.js";
import { GameModes } from "#app/game-mode";
const outputModifierData = false;
const useMaxWeightForOutput = false;

View File

@ -13,7 +13,7 @@ import * as Utils from "./../utils";
import Overrides from "#app/overrides";
import i18next from "i18next";
import { ShopCursorTarget } from "#app/enums/shop-cursor-target";
import { GameModes } from "#app/game-mode.js";
import { GameModes } from "#app/game-mode";
export const SHOP_OPTIONS_ROW_LIMIT = 6;