Skip to content

Commit

Permalink
Add missing parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinXII committed Nov 14, 2017
1 parent ea15392 commit 27c8d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/damage.js
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ function getDamageResult(attacker, defender, move, field) {
description.attackerItem = attacker.item;
} else if ((gen < 7 && attacker.item === "Soul Dew" && (attacker.name === "Latios" || attacker.name === "Latias") && move.category === "Special") ||
(attacker.item === "Choice Band" && move.category === "Physical" && !move.isZ) ||
(attacker.item === "Choice Specs" && move.category === "Special" && !move.isZ) {
(attacker.item === "Choice Specs" && move.category === "Special" && !move.isZ)) {
atMods.push(0x1800);
description.attackerItem = attacker.item;
}
Expand Down

0 comments on commit 27c8d6c

Please sign in to comment.