Skip to content

Commit

Permalink
Merge pull request #179 from wtfseanscool/master
Browse files Browse the repository at this point in the history
Update modify_move.py - Fix terablast category
  • Loading branch information
pmariglia authored Oct 22, 2023
2 parents 123945a + 58f9d93 commit b696df3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion showdown/engine/special_effects/moves/modify_move.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ def terablast(attacking_side, attacking_move, defending_move, attacking_pokemon,

boosted_stats = attacking_pokemon.calculate_boosted_stats()

if boosted_stats[constants.SPECIAL_ATTACK] > boosted_stats[constants.ATTACK]:
if boosted_stats[constants.ATTACK] > boosted_stats[constants.SPECIAL_ATTACK]:
attacking_move[constants.CATEGORY] = constants.PHYSICAL

return attacking_move
Expand Down

0 comments on commit b696df3

Please sign in to comment.