Skip to content

Commit

Permalink
Sanity adjusted Superior Capacity Rune (#18)
Browse files Browse the repository at this point in the history
I realized that the buff was perhaps too insane prior lmao
  • Loading branch information
ScriptedPiky authored Mar 1, 2022
1 parent fe303bb commit 52ee540
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ public void checkAndSetAltar()
this.efficiencyMultiplier = (float) Math.pow(0.80, upgrades.getSpeedUpgrades());
this.sacrificeEfficiencyMultiplier = (float) (0.12 * upgrades.getSacrificeUpgrades());
this.selfSacrificeEfficiencyMultiplier = (float) (0.12 * upgrades.getSelfSacrificeUpgrades());
this.capacityMultiplier = (float) ((1 * Math.pow(1.22, upgrades.getBetterCapacitiveUpgrades()) + 0.35 * upgrades.getAltarCapacitiveUpgrades()));
this.capacityMultiplier = (float) ((1 * Math.pow(1.14, upgrades.getBetterCapacitiveUpgrades()) + 0.35 * upgrades.getAltarCapacitiveUpgrades()));
this.dislocationMultiplier = (float) (Math.pow(1.5, upgrades.getDisplacementUpgrades()));
this.orbCapacityMultiplier = (float) (1 + 0.04 * upgrades.getOrbCapacitiveUpgrades());
this.capacity = (int) (FluidContainerRegistry.BUCKET_VOLUME * 10 * capacityMultiplier);
Expand Down

0 comments on commit 52ee540

Please sign in to comment.