diff options
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/profileviewer/MiningPage.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/MiningPage.java b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/MiningPage.java index dd626796..a1dba262 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/MiningPage.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/MiningPage.java @@ -287,7 +287,7 @@ public class MiningPage extends GuiProfileViewerPage { "", EnumChatFormatting.GRAY + "Cost", EnumChatFormatting.DARK_GREEN + - StringUtils.formatNumber(Math.pow(miningFortune + 2, 3)) + + StringUtils.formatNumber((int) Math.pow(miningFortune + 2, 3.05)) + " Mithril Powder" ) : Lists.newArrayList( @@ -331,7 +331,7 @@ public class MiningPage extends GuiProfileViewerPage { "", EnumChatFormatting.GRAY + "Cost", EnumChatFormatting.DARK_GREEN + - StringUtils.formatNumber((int) Math.pow(tittyInsane + 2, 3)) + + StringUtils.formatNumber((int) Math.pow(tittyInsane + 2, 3.1)) + " Mithril Powder" ) : Lists.newArrayList( @@ -929,7 +929,7 @@ public class MiningPage extends GuiProfileViewerPage { "", EnumChatFormatting.GRAY + "Cost", EnumChatFormatting.LIGHT_PURPLE + - StringUtils.formatNumber(Math.pow(miningSpeed2 + 2, 3)) + + StringUtils.formatNumber((int) Math.pow(miningSpeed2 + 2, 3.2)) + " Gemstone Powder" ) : Lists.newArrayList( @@ -1169,7 +1169,7 @@ public class MiningPage extends GuiProfileViewerPage { "", EnumChatFormatting.GRAY + "Cost", EnumChatFormatting.DARK_GREEN + - StringUtils.formatNumber((int) Math.pow(crystallized + 2, 2.4)) + + StringUtils.formatNumber((int) Math.pow(crystallized + 2, 3.4)) + " Mithril Powder" ) : Lists.newArrayList( |