Skip to content

Commit

Permalink
Add support for '+ PB" modifier for proficiency bonus
Browse files Browse the repository at this point in the history
  • Loading branch information
kakaroto committed Jan 26, 2025
1 parent ad353a4 commit 0c84bf6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/dndbeyond/content-scripts/character.js
Original file line number Diff line number Diff line change
Expand Up @@ -1944,6 +1944,7 @@ function findModifiers(character, custom_roll) {
find_static_modifier(" + half your " + class_name.toLowerCase() + " level", half_level, {add_your: false});
}
find_static_modifier("proficiency bonus", character._proficiency);
find_static_modifier(" + PB", character._proficiency, { add_your: false });
find_static_modifier("ac", character._ac);
find_static_modifier("armor class", character._ac);

Expand Down

0 comments on commit 0c84bf6

Please sign in to comment.