File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9724,7 +9724,7 @@ <h4 style="grid-row: 1/3; justify-self: left;">ADVANCED Options:</h4>
97249724 // check for low Dex pen and do not apply if AC >= 10
97259725 let armorBonusPenaltyCap = 1;
97269726 if (armorBonus > 0 && rearAC >= 10) {
9727- clog(`Check1: Dex Penalty & AC is 10+ \n armorBonus:${armorBonus} rearAC:${rearAC} \n Dex Penalty set to 0`);
9727+ // clog(`Check1: Dex Penalty & AC is 10+ \n armorBonus:${armorBonus} rearAC:${rearAC} \n Dex Penalty set to 0`);
97289728 armorBonusPenaltyCap = 0;
97299729 }
97309730 // prettier-ignore
@@ -9734,7 +9734,7 @@ <h4 style="grid-row: 1/3; justify-self: left;">ADVANCED Options:</h4>
97349734
97359735 // check for low Dex pen after shield and do not apply if AC >= 10
97369736 if (armorBonus > 0 && combinedShieldModMagic >= 10) {
9737- clog(`Check2: Dex Penalty & AC is 10+ \n armorBonus:${armorBonus} combinedShieldModMagic:${combinedShieldModMagic} \n Dex Penalty set to 0`);
9737+ // clog(`Check2: Dex Penalty & AC is 10+ \n armorBonus:${armorBonus} combinedShieldModMagic:${combinedShieldModMagic} \n Dex Penalty set to 0`);
97389738 totalAC = int(shieldlessAC + armorBonus + combinedShieldModMagic); // removes Dex pen
97399739 }
97409740
You can’t perform that action at this time.
0 commit comments