[FIX] Revert 'Fix BagSize limit to 36' due to it breaking Auction and Character Item loading

This change introduced a bug which causes the following:
* All auction items to become invalid as the data field was now the wrong length
  to be loaded.

* All character Items become invalid and end up being mailed to the character

If you have run the system since the 4th June you will have been affected !!

Link to original PR:
9b8a213ba9
This commit is contained in:
Antz 2020-12-18 14:34:40 +00:00
parent 0ed3eec7c9
commit 79585df922

View File

@ -66,7 +66,7 @@ enum EContainerFields
CONTAINER_ALIGN_PAD = ITEM_END + 0x01, // Size:1
CONTAINER_FIELD_SLOT_1 = ITEM_END + 0x02, // count=56
CONTAINER_FIELD_SLOT_LAST = ITEM_END + 0x38,
CONTAINER_END = ITEM_END + 0x4A,
CONTAINER_END = ITEM_END + 0x3A,
};
/**