mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 11:49:12 +00: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:
parent
d269d148e2
commit
897810fe41
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ public class Economy
|
|||
}
|
||||
getCurrency();
|
||||
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!**************************
|
||||
|
|
Loading…
Reference in a new issue