Increase gold and resource stack limits

This commit is contained in:
Rob
2026-07-12 02:00:23 +01:00
parent 52e2619a81
commit a5a7f855c6
5 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -1259,7 +1259,7 @@ public class ClientMessagePump implements NetMsgHandler {
cost *= profit;
if (gold.getNumOfItems() + cost > 10000000) {
if (gold.getNumOfItems() + cost > MBServerStatics.PLAYER_GOLD_LIMIT) {
return;
}