Jump to content

Gloomerang not getting full 1.1x bonus from void cowl


Arcwell
  • Fixed

The 1.1x modifier from void cowl does not affect the first 5 physical and 5 planar damage from Gloomerang because damage_scale is used within a Lerp function. One fix would be multiplying in damage_scale after the Lerp function, like so:

inst.components.weapon:SetDamage(Lerp(TUNING.VOIDCLOTH_BOOMERANG_DAMAGE.min, TUNING.VOIDCLOTH_BOOMERANG_DAMAGE.max, 1)*damage_scale)
inst.components.planardamage:SetBaseDamage(Lerp(TUNING.VOIDCLOTH_BOOMERANG_PLANAR_DAMAGE.min, TUNING.VOIDCLOTH_BOOMERANG_PLANAR_DAMAGE.max, 1)*damage_scale)

Also, the void cowl bonus is applying to both physical and planar damage when it normally affects only physical damage. Is this intended?


Steps to Reproduce

code

  • Like 1



User Feedback


A developer has marked this issue as fixed. This means that the issue has been addressed in the current development build and will likely be in the next update.


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
  • Create New...