From 79585df922c7166dc03565b17e3db7a91e50b980 Mon Sep 17 00:00:00 2001 From: Antz Date: Fri, 18 Dec 2020 14:34:40 +0000 Subject: [PATCH] [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: https://github.com/mangoszero/server/commit/9b8a213ba97dace154b4d87c9567478793d4e6e2 --- src/game/Object/UpdateFields.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/Object/UpdateFields.h b/src/game/Object/UpdateFields.h index 51dea884..4fbdf1c2 100644 --- a/src/game/Object/UpdateFields.h +++ b/src/game/Object/UpdateFields.h @@ -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, }; /**