1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-15 11:04:29 +02:00

Prevent oversized lines on trade signs

This commit is contained in:
snowleo
2011-07-06 01:39:24 +02:00
parent ef4a3df168
commit e6ee51df4c

View File

@@ -80,6 +80,10 @@ public class SignTrade extends EssentialsSign
final Double money = getMoney(split[0]);
if (money != null)
{
if (Util.formatCurrency(money).length() * 2 > 15)
{
throw new SignException("Line can be too long!");
}
sign.setLine(index, Util.formatCurrency(money) + ":0");
return;
}
@@ -104,7 +108,12 @@ public class SignTrade extends EssentialsSign
{
throw new SignException(Util.i18n("moreThanZero"));
}
sign.setLine(index, amount + " " + split[1] + ":0");
String newline = amount + " " + split[1] + ":0";
if ((newline + amount).length() > 16)
{
throw new SignException("Line can be too long!");
}
sign.setLine(index, newline);
return;
}