This is 3.0.2
This commit is contained in:
parent
cde14c7100
commit
25f83034be
2
pom.xml
2
pom.xml
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>com.massivecraft.massivesuper</groupId>
|
||||
<artifactId>MassiveSuper</artifactId>
|
||||
<version>3.0.1</version>
|
||||
<version>3.0.2</version>
|
||||
<relativePath>../MassiveSuper</relativePath>
|
||||
</parent>
|
||||
|
||||
|
@ -32,7 +32,7 @@ public abstract class MoneyMixinAbstract implements MoneyMixin
|
||||
// OK! I'll have to calculate :P
|
||||
int factor = (int) Math.round(Math.pow(10, fractionalDigits));
|
||||
amount = amount * factor;
|
||||
amount = Math.ceil(amount);
|
||||
amount = moneyCeil(amount);
|
||||
amount = amount / factor;
|
||||
|
||||
return amount;
|
||||
|
Loading…
Reference in New Issue
Block a user