Hero Lab 4e

Herolab D&D 4e Development => Herolab 4e Development => Herolab 4e Bugs => Topic started by: Frstrm on October 10, 2020, 06:02:58 PM

Title: Kensei Focus - Paragon Path Feature
Post by: Frstrm on October 10, 2020, 06:02:58 PM
Paragon Path: Kensei

Level 11 Feature: Kensei Focus
Description: You gain a +1 bonus to weapon attack rolls with a melee weapon of your choice

ISSUE:
The +1 bonus is being applied to Damage, not Attack.
Title: Re: Kensei Focus - Paragon Path Feature
Post by: Charlie on October 19, 2020, 02:14:12 AM
That's really easy to fix in the Editor (though just in case it's good to save a copy of the file you're editing).

Open ddi_paths.user in the Editor, select Class Features, and find and select Kensei Focus.
In Kensei Focus, select Eval Scripts, then change the line that reads

perform eachpick.field[wpDamage].modify[+,1,""]

to

perform eachpick.field[wpBonus].modify[+,1,""]

Click OK and Save your work, then Test Now to make sure it compiles.

If anyone else needs the fix, they'll have to copy your ddi_paths.user file.
Title: Re: Kensei Focus - Paragon Path Feature
Post by: Frstrm on October 20, 2020, 12:04:34 AM
Thanks for the local file fix method.
Title: Re: Kensei Focus - Paragon Path Feature
Post by: Charlie on October 21, 2020, 10:13:36 PM
You're welcome!

We've been fixing bugs in our local files for the last four years now, so it gave me a chance to patch the one you spotted in our files as well.