Skip to content

Commit

Permalink
Removed console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jake-white committed Dec 13, 2017
1 parent 35b5c4a commit 7584c64
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion script_res/damage.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,6 @@ function getDamageResult(attacker, defender, move, field) {
var attack;
var attackSource = move.name === "Foul Play" ? defender : attacker;
var usesPhysicalAttackStat = move.category === "Physical" || (necrozmaMove && attacker.stats[AT] >= attacker.stats[SA]);
console.log(move.name + " " + usesPhysicalAttackStat);
var attackStat = usesPhysicalAttackStat ? AT : SA;
description.attackEVs = attacker.evs[attackStat] +
(NATURES[attacker.nature][0] === attackStat ? "+" : NATURES[attacker.nature][1] === attackStat ? "-" : "") + " " +
Expand Down

0 comments on commit 7584c64

Please sign in to comment.