Skip to content

Commit

Permalink
Fix typo that might have caused "roll damages only" to fail from quic…
Browse files Browse the repository at this point in the history
…kroll
  • Loading branch information
kakaroto committed Apr 25, 2024
1 parent 0942413 commit f978daf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dndbeyond/content-scripts/character.js
Original file line number Diff line number Diff line change
Expand Up @@ -2423,7 +2423,7 @@ function activateQuickRolls() {
execute(paneClass, {force_to_hit_only, force_damages_only});
} else {
quick_roll_force_attack = force_to_hit_only;
quick_roll_force_damge = force_damages_only;
quick_roll_force_damage = force_damages_only;
quick_roll = true;
}
});
Expand Down Expand Up @@ -2462,12 +2462,12 @@ function activateQuickRolls() {
$(".ddbc-character-tidbits__menu-callout").trigger('click');
name_element.trigger('click');
quick_roll_force_attack = force_to_hit_only;
quick_roll_force_damge = force_damages_only;
quick_roll_force_damage = force_damages_only;
quick_roll = true;
}
} else {
quick_roll_force_attack = force_to_hit_only;
quick_roll_force_damge = force_damages_only;
quick_roll_force_damage = force_damages_only;
quick_roll = true;
}
});
Expand Down

0 comments on commit f978daf

Please sign in to comment.