Skip to content

Commit

Permalink
Remove logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcglincy committed Sep 12, 2022
1 parent 66a60dd commit 46b3a81
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion module/actor/actor.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,6 @@ export class DISActor extends Actor {
const maxDamageRoll = new Roll(damageFormula);
maxDamageRoll.evaluate({ async: false, maximize: true });
const isMaxDamage = damageRoll.total == maxDamageRoll.total;
console.log(damageRoll);
if (isMaxDamage) {
maxDamageOutcome = game.i18n.localize("DIS.MaxDamageOutcome");
}
Expand Down

0 comments on commit 46b3a81

Please sign in to comment.