Make more accurate to pinto

This commit is contained in:
Bluzume 2021-11-06 04:16:29 -04:00
parent a134ded412
commit 117ca8a38a

View file

@ -2374,11 +2374,15 @@ namespace HISP.Server
}
catch (Exception)
{
Logger.ErrorPrint(sender.LoggedinUser.Username + " Tried to send a invalid dynamic input (Money TRADE, amount is NaN)");
goto error;
}
if(amountMoney <= 0)
{
Logger.ErrorPrint(sender.LoggedinUser.Username + " tried to trade less than 0$");
}
if(sender.LoggedinUser.Money <= amountMoney)
{
error:;
byte[] tooMuchMoney = PacketBuilder.CreateChat(Messages.TradeMoneyOfferTooMuch, PacketBuilder.CHAT_BOTTOM_RIGHT);
sender.SendPacket(tooMuchMoney);
break;