mirror of
https://github.com/MassiveCraft/Factions.git
synced 2024-11-06 18:49:34 +01:00
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:
parent
ed83711493
commit
900f05c62f
@ -216,7 +216,14 @@ public class Econ
|
|||||||
String acc = ep.getAccountId();
|
String acc = ep.getAccountId();
|
||||||
String You = ep.describeTo(ep, true);
|
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
|
// The player should gain money
|
||||||
// There is no risk of failure
|
// There is no risk of failure
|
||||||
|
@ -123,12 +123,9 @@ public class FactionsPlayerListener implements Listener
|
|||||||
}
|
}
|
||||||
catch (UnknownFormatConversionException ex)
|
catch (UnknownFormatConversionException ex)
|
||||||
{
|
{
|
||||||
P.p.log(Level.SEVERE, "Critical error in chat message formatting! Complete format string: "+yourFormat);
|
P.p.log(Level.SEVERE, "Critical error in chat message formatting!");
|
||||||
P.p.log(Level.SEVERE, "First half of event.getFormat() string: "+formatStart);
|
|
||||||
P.p.log(Level.SEVERE, "Second half of event.getFormat() string: "+formatEnd);
|
|
||||||
P.p.log(Level.SEVERE, "NOTE: To fix this quickly, running this command should work: f config chatTagInsertIndex 0");
|
P.p.log(Level.SEVERE, "NOTE: To fix this quickly, running this command should work: f config chatTagInsertIndex 0");
|
||||||
P.p.log(Level.SEVERE, "For a more proper fix, please read the chat configuration notes on the configuration page of the Factions user guide.");
|
P.p.log(Level.SEVERE, "For a more proper fix, please read this regarding chat configuration: http://massivecraft.com/plugins/factions/config#Chat_configuration");
|
||||||
ex.printStackTrace();
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user