mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-03-25 13:09:37 +01:00
Prevent oversized lines on trade signs
This commit is contained in:
parent
c2936186f8
commit
674128b3f7
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user