diff --git a/rivencalc.php b/rivencalc.php index 6915538..c281b59 100644 --- a/rivencalc.php +++ b/rivencalc.php @@ -432,6 +432,7 @@ function addStatCompatInfo(div, weaponData, tag, buff) // Weapons with projectile: // - Aeolak: Impact, Puncture, Slash. + // - Afentis: Puncture. // - Acceltra: Impact. // - Hystrix: Puncture. // Weapons without projectile: @@ -446,7 +447,7 @@ function weaponCanRollDamageType(weaponData, damageType) if (damageType in damageTable) { const totalDamage = Object.values(damageTable).reduce((a, b) => a + b, 0); - return (damageTable[damageType] / totalDamage) > 0.15; + return (damageTable[damageType] / totalDamage) > 0.2; } return false; }