Sklore / HL_DD_5e_Colab

This is a community effort to add many options that the community felt were missing from the D&D 5e SRD Hero Labs release.
54 stars 31 forks source link

Dread Ambusher overwritten by Alert #1028

Closed BobStumpp closed 3 years ago

BobStumpp commented 3 years ago

The Gloom Stalker (Ranger Subclass) ability of Dread Ambusher adds your Wisdom modifier to your initiative roll. When you add the Alert Feat, your Wisdom Modifier is removed from your initiative.

Updating the Evaluation Script to :

doneif (tagis[Helper.Disable] <> 0) var InBon as number InBon = maximum(0, #attrmod[aWIS]) + #skillbonus[Initiative]

applybonus[Bonus, hero.child[Initiative], InBon]

Corrects the issue. The change is to add the existing skillbonus to the InBon variable before setting the Bonus.

Fenris447 commented 3 years ago

Thanks for the report. I'm pushing to have release 3.3 finished this week, but I'll see about squeezing it in last-minute.

Fenris447 commented 3 years ago

This was a great fix. I took it one step further and applied a similar fix to Alert, so that both things will play nicely with other Initiative bonus features in the future.

EDIT: Nevermind, Alert was already doing what I made it do. I only made it more complicated, so I'm nixing my "fix" and just using yours. Ha!