Increased multisell buy limit to 10000.

Contributed by Sahar.
This commit is contained in:
MobiusDevelopment 2019-10-01 12:28:10 +00:00
parent a3737ec171
commit 9b3c98a2e4

View File

@ -103,7 +103,7 @@ public class MultiSellChoose implements IClientIncomingPacket
return; return;
} }
if ((_amount < 1) || (_amount > 5000)) if ((_amount < 1) || (_amount > 10000))
{ {
player.setMultiSell(null); player.setMultiSell(null);
return; return;