zero-value economy gains/losses are now skipped over ("X gained 0.0 for claiming this land" and similar is a bit odd)

CLeaned up warning given for UnknownFormatConversionException chat exception; the debug info is no longer useful for us, and a distraction for users.
This commit is contained in:
Brettflan
2012-01-31 11:07:47 -06:00
parent ed83711493
commit 900f05c62f
2 changed files with 10 additions and 6 deletions

View File

@ -216,7 +216,14 @@ public class Econ
String acc = ep.getAccountId();
String You = ep.describeTo(ep, true);
if (delta >= 0)
if (delta == 0)
{
// no money actually transferred?
// ep.msg("<h>%s<i> didn't have to pay anything %s.", You, forDoingThis); // might be for gains, might be for losses
return true;
}
if (delta > 0)
{
// The player should gain money
// There is no risk of failure