Topic: character.getRegularDamageAverage() seems wrong

  • Author
    Posts
  • #27637
    Avatar photoSogartar
    Participant

    Currently the code is

    
    return this.Math.floor(this.DamageRegularMin + (this.DamageRegularMax - this.DamageRegularMin) / 2 * this.DamageRegularMult * this.DamageTotalMult);
    

    The damage multipliers does not scale the minimum damage.

    I think it should be

    
    return this.Math.floor((this.DamageRegularMax + this.DamageRegularMin) / 2 * this.DamageRegularMult * this.DamageTotalMult);
    

    The same problem holds for getArmorDamageAverage().

Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.