This is 3.0.2

This commit is contained in:
Magnus Ulf 2019-01-06 12:54:47 +01:00
parent cde14c7100
commit 25f83034be
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.massivecraft.massivesuper</groupId> <groupId>com.massivecraft.massivesuper</groupId>
<artifactId>MassiveSuper</artifactId> <artifactId>MassiveSuper</artifactId>
<version>3.0.1</version> <version>3.0.2</version>
<relativePath>../MassiveSuper</relativePath> <relativePath>../MassiveSuper</relativePath>
</parent> </parent>

View File

@ -32,7 +32,7 @@ public abstract class MoneyMixinAbstract implements MoneyMixin
// OK! I'll have to calculate :P // OK! I'll have to calculate :P
int factor = (int) Math.round(Math.pow(10, fractionalDigits)); int factor = (int) Math.round(Math.pow(10, fractionalDigits));
amount = amount * factor; amount = amount * factor;
amount = Math.ceil(amount); amount = moneyCeil(amount);
amount = amount / factor; amount = amount / factor;
return amount; return amount;