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:
parent
ae33a46945
commit
1b558cd945
|
@ -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());
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue