1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-15 19:14:18 +02:00

Fixed currency/plural.

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1326 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
xeology
2011-05-03 04:05:28 +00:00
parent 4f19593af3
commit 3a90e39be0

View File

@@ -285,7 +285,7 @@ public class Economy
} }
getCurrency(); getCurrency();
getCurrencyPlural(); getCurrencyPlural();
return formed + " " + ((amount <= 1 && amount >= -1) ? ess.getSettings().getCurrency() : ess.getSettings().getCurrency()); return formed + " " + ((amount <= 1 && amount >= -1) ? ess.getSettings().getCurrency() : ess.getSettings().getCurrencyPlural());
} }
//************************!WARNING!************************** //************************!WARNING!**************************