mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
Make more accurate to pinto
This commit is contained in:
parent
117ca8a38a
commit
d88132a9eb
1 changed files with 5 additions and 4 deletions
|
@ -2374,15 +2374,16 @@ namespace HISP.Server
|
|||
}
|
||||
catch (Exception)
|
||||
{
|
||||
goto error;
|
||||
byte[] tooMuchMoney = PacketBuilder.CreateChat(Messages.TradeMoneyOfferTooMuch, PacketBuilder.CHAT_BOTTOM_RIGHT);
|
||||
sender.SendPacket(tooMuchMoney);
|
||||
break;
|
||||
}
|
||||
if(amountMoney <= 0)
|
||||
if(amountMoney < 0)
|
||||
{
|
||||
Logger.ErrorPrint(sender.LoggedinUser.Username + " tried to trade less than 0$");
|
||||
}
|
||||
if(sender.LoggedinUser.Money <= amountMoney)
|
||||
if(amountMoney >= sender.LoggedinUser.Money)
|
||||
{
|
||||
error:;
|
||||
byte[] tooMuchMoney = PacketBuilder.CreateChat(Messages.TradeMoneyOfferTooMuch, PacketBuilder.CHAT_BOTTOM_RIGHT);
|
||||
sender.SendPacket(tooMuchMoney);
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue