fixed number format

This commit is contained in:
mung3r 2011-09-28 20:27:52 -07:00
parent fe10403c57
commit bad3e2c2aa
1 changed files with 3 additions and 2 deletions

View File

@ -178,10 +178,11 @@ public class Economy_3co implements Economy {
@Override
public String format(double amount) {
amount = Math.ceil(amount);
if (amount == 1) {
return String.format("%f %s", amount, getMoneyNameSingular());
return String.format("%d %s", (int)amount, getMoneyNameSingular());
} else {
return String.format("%f %s", amount, getMoneyNamePlural());
return String.format("%d %s", (int)amount, getMoneyNamePlural());
}
}
}