[IPvGO] Docs improvements and other feedback (#1011)

This commit is contained in:
Michael Ficocelli
2024-01-05 20:50:28 -05:00
committed by GitHub
parent 0da9d9d3c0
commit 7e721c144e
6 changed files with 33 additions and 9 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ export function CalculateEffect(nodes: number, faction: opponents): number {
const power = getEffectPowerForFaction(faction);
const sourceFileBonus = Player.sourceFileLvl(14) ? 1.25 : 1;
return (
1 + Math.log(nodes + 1) * Math.pow(nodes + 1, 0.33) * 0.005 * power * currentNodeMults.GoPower * sourceFileBonus
1 + Math.log(nodes + 1) * Math.pow(nodes + 1, 0.3) * 0.004 * power * currentNodeMults.GoPower * sourceFileBonus
);
}