Skip to content

Commit c90643e

Browse files
committedMar 7, 2025·
Fix style
1 parent 99ea179 commit c90643e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎sim/pokemon.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1964,7 +1964,7 @@ export class Pokemon {
19641964
if (!this.hp) return false;
19651965
status = this.battle.dex.conditions.get(status) as Effect;
19661966
if (!this.volatiles[status.id]) return false;
1967-
const {linkedPokemon, linkedStatus} = this.volatiles[status.id];
1967+
const { linkedPokemon, linkedStatus } = this.volatiles[status.id];
19681968
this.battle.singleEvent('End', status, this.volatiles[status.id], this);
19691969
delete this.volatiles[status.id];
19701970
if (linkedPokemon) {

0 commit comments

Comments
 (0)
Please sign in to comment.