Skip to content

Commit

Permalink
Fix indexerrror
Browse files Browse the repository at this point in the history
  • Loading branch information
a-sussy-impostor authored May 3, 2024
1 parent 970a2c5 commit 5e58722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, name, type, number, bst, move, star, energy , special = None,
self.z = None
self.fuse = fuse # list
del name, type, number, bst, move, star, energy, special, mega, z, fuse
def Attack(self, enemy,selfch = [1,1,1,1,1],enemych = [1,1,1,1,1]): # Stat changes: [Attack, Defense, Sp. Atk, Sp. Def, Spe, Crit]
def Attack(self, enemy,selfch = [1,1,1,1,1,1],enemych = [1,1,1,1,1,1]): # Stat changes: [Attack, Defense, Sp. Atk, Sp. Def, Spe, Crit]
if self.move[3] == "P":
getbst = [1,2]
elif self.move[3] == "S":
Expand Down

0 comments on commit 5e58722

Please sign in to comment.