mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-07-22 21:43:41 +00:00
Couple more bits of Eco cleanup
This commit is contained in:
parent
9ec1a6b78f
commit
1bb7946e13
3 changed files with 7 additions and 7 deletions
|
@ -49,7 +49,7 @@ public class Commandsell extends EssentialsCommand
|
|||
{
|
||||
}
|
||||
}
|
||||
if (totalWorth.compareTo(BigDecimal.ZERO) > 0)
|
||||
if (totalWorth.signum() > 0)
|
||||
{
|
||||
user.sendMessage(_("totalWorthAll", type, Util.displayCurrency(totalWorth, ess)));
|
||||
}
|
||||
|
@ -71,7 +71,7 @@ public class Commandsell extends EssentialsCommand
|
|||
{
|
||||
}
|
||||
}
|
||||
if (totalWorth.compareTo(BigDecimal.ZERO) > 0)
|
||||
if (totalWorth.signum() > 0)
|
||||
{
|
||||
user.sendMessage(_("totalWorthBlocks", type, Util.displayCurrency(totalWorth, ess)));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue