From dfcc895c938ffc496db3c5fe3bbea0359b1dd638 Mon Sep 17 00:00:00 2001 From: James103 <37945304+James103@users.noreply.github.com> Date: Thu, 14 Dec 2023 14:04:24 -0600 Subject: [PATCH] Fix Remnant gain factors while Dilated and Doomed Remnant gain while Dilated and Doomed was visually calculated incorrectly: when calculating the numbers in the rightmost column, the multiplier used on log10(ip) and log10(ep) was the same as the multiplier on log10(am) instead of the correct values given on the leftmost column. --- src/components/tabs/celestial-pelle/RemnantGainFactor.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/tabs/celestial-pelle/RemnantGainFactor.vue b/src/components/tabs/celestial-pelle/RemnantGainFactor.vue index 77e02fdc3..8ef6d77f0 100644 --- a/src/components/tabs/celestial-pelle/RemnantGainFactor.vue +++ b/src/components/tabs/celestial-pelle/RemnantGainFactor.vue @@ -102,10 +102,10 @@ export default { {{ format(Math.log10(best.am.add(1).log10()*dilationMult[0] + 2), 2, 2) }}
- {{ format(Math.log10(best.ip.add(1).log10()*dilationMult[0] + 2), 2, 2) }} + {{ format(Math.log10(best.ip.add(1).log10()*dilationMult[1] + 2), 2, 2) }}
- {{ format(Math.log10(best.ep.add(1).log10()*dilationMult[0] + 2), 2, 2) }} + {{ format(Math.log10(best.ep.add(1).log10()*dilationMult[2] + 2), 2, 2) }}
{{ format(1.64, 2, 2) }}