Skip to content

Commit

Permalink
Add space between damage type and restriction
Browse files Browse the repository at this point in the history
Fixes #1085
  • Loading branch information
kakaroto committed Apr 25, 2024
1 parent d50480c commit fdc26c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dndbeyond/content-scripts/character.js
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ async function rollItem(force_display = false, force_to_hit_only = false, force_
if (dmg != "") {
dmg = dmg.replace(dmg_info, "");
if (dmg_info != "")
dmg_type += "(" + dmg_info + ")";
dmg_type += " (" + dmg_info + ")";

if ((character.hasClassFeature("Great Weapon Fighting", true) || character.hasFeat("Great Weapon Fighting", true)) &&
properties["Attack Type"] == "Melee" &&
Expand Down

0 comments on commit fdc26c9

Please sign in to comment.