mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-03-21 17:50:29 -05:00
Fix spacing errors
This commit is contained in:
parent
0e1657e2a2
commit
95e2bc5336
|
|
@ -315,7 +315,7 @@ process.stdout.write("Building `data/teambuilder-tables.js`... ");
|
|||
banlist.includes(template.species + '-Base') ||
|
||||
banlist.includes(template.baseSpecies) ||
|
||||
['Zygarde-Complete', 'Necrozma-Ultra'].includes(template.species)
|
||||
) {
|
||||
) {
|
||||
tier = 'Uber';
|
||||
return tier;
|
||||
} else if (tier === 'Uber') { // This check is for Pokemon tiered as Uber but aren't in the banlist for National Dex
|
||||
|
|
|
|||
|
|
@ -263,12 +263,12 @@ class BattleTextParser {
|
|||
}
|
||||
|
||||
party(side: string) {
|
||||
side = side.slice(0, 2);
|
||||
if (side === (this.perspective === 0 ? 'p1' : 'p2')) {
|
||||
return BattleText.default.party;
|
||||
}
|
||||
return BattleText.default.opposingParty;
|
||||
}
|
||||
side = side.slice(0, 2);
|
||||
if (side === (this.perspective === 0 ? 'p1' : 'p2')) {
|
||||
return BattleText.default.party;
|
||||
}
|
||||
return BattleText.default.opposingParty;
|
||||
}
|
||||
|
||||
static effectId(effect?: string) {
|
||||
if (!effect) return '';
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user