Rainbow raw

This commit is contained in:
b 2021-09-06 13:49:12 -07:00
parent d7ec1aafd6
commit 2c79378544
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ const url_tag = location.hash.slice(1);
// console.log(url_tag);
const BUILD_VERSION = "7.0.18";
const BUILD_VERSION = "7.0.19";
function setTitle() {
let text;

View file

@ -2067,7 +2067,7 @@ function displaySpellDamage(parent_elem, overallparent_elem, build, spell, spell
if (part.type === "damage") {
//console.log(build.expandedStats);
let _results = calculateSpellDamage(stats, part.conversion,
stats.get("sdRaw"), stats.get("sdPct") + build.externalStats.get("sdPct"),
stats.get("sdRaw") + stats.get("rainbowRaw"), stats.get("sdPct") + build.externalStats.get("sdPct"),
part.multiplier / 100, build.weapon, build.total_skillpoints, build.damageMultiplier, build.externalStats);
let totalDamNormal = _results[0];
let totalDamCrit = _results[1];