standard 1000 inventory weight && fixed XP rates 5x/10x

This commit is contained in:
2024-02-07 15:52:42 -06:00
parent d70f9f6dc3
commit 2e4bf0823c
4 changed files with 19 additions and 9 deletions
+1 -1
View File
@@ -2131,7 +2131,7 @@ public class CharacterItemManager {
tradeWeight = tradeWeight + tradeCharacter.getCharItemManager().getTradingWeight();
tradeWeight = tradeWeight - this.getTradingWeight();
return tradeWeight <= (int) playerCharacter.statStrBase * 3;
return tradeWeight <= playerCharacter.getInventoryCapacity();
}
public boolean hasRoomBank(short weight) {
+4 -1
View File
@@ -2189,8 +2189,11 @@ public class PlayerCharacter extends AbstractCharacter {
}
//public int getInventoryCapacity() {
// return statStrBase * 3;
//}
public int getInventoryCapacity() {
return statStrBase * 3;
return 1000;
}
public int getInventoryCapacityRemaining() {