Skip to content

Commit

Permalink
Fix incorrect byte multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 authored May 13, 2022
1 parent 048b809 commit 2e8ef7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ninety/megacells/item/MEGACellTier.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public enum MEGACellTier {
}

public int kbFactor() {
return 64 * (int) Math.pow(4, this.index);
return 256 * (int) Math.pow(4, this.index);
}

public Item getComponent() {
Expand Down

0 comments on commit 2e8ef7e

Please sign in to comment.