Removed count when validating stack withdraw weight.

This commit is contained in:
2024-06-13 15:42:54 -04:00
parent 40bae67443
commit 5bd85addb7
+1 -1
View File
@@ -429,7 +429,7 @@ public class Warehouse {
return false;
if (addToInventory)
if (!itemMan.hasRoomInventory(template.item_wt * amount)) {
if (!itemMan.hasRoomInventory(template.item_wt)) {
ChatManager.chatSystemInfo(playerCharacter, "You can not carry any more of that item.");
return false;
}