Prime shop slot validation tempfix.

Contributed by Sero.
This commit is contained in:
MobiusDevelopment
2022-03-08 22:50:48 +00:00
parent 7e09528fc1
commit 9fa8cb6fba
21 changed files with 258 additions and 90 deletions

View File

@ -73,8 +73,8 @@ public class RequestBRBuyProduct implements IClientIncomingPacket
final PrimeShopGroup item = PrimeShopData.getInstance().getItem(_brId);
if (validatePlayer(item, _count, player))
{
final int price = (item.getPrice() * _count);
final int paymentId = validatePaymentId(item, price);
final int price = item.getPrice() * _count;
final int paymentId = validatePaymentId(item);
if (paymentId < 0)
{
player.sendPacket(new ExBRBuyProduct(ExBrProductReplyType.LACK_OF_POINT));
@ -194,7 +194,15 @@ public class RequestBRBuyProduct implements IClientIncomingPacket
final long slots = item.getCount() * count;
if (player.getInventory().validateWeight(weight))
{
if (!player.getInventory().validateCapacity(slots))
if (item.getCount() == 1)
{
if (!player.getInventory().validateCapacity(slots))
{
player.sendPacket(new ExBRBuyProduct(ExBrProductReplyType.INVENTORY_OVERFLOW));
return false;
}
}
else if (!player.getInventory().validateCapacity(count))
{
player.sendPacket(new ExBRBuyProduct(ExBrProductReplyType.INVENTORY_OVERFLOW));
return false;
@ -209,7 +217,7 @@ public class RequestBRBuyProduct implements IClientIncomingPacket
return true;
}
private static int validatePaymentId(PrimeShopGroup item, long amount)
private static int validatePaymentId(PrimeShopGroup item)
{
switch (item.getPaymentType())
{