From eae624120ad32c9701b7d9063b5f4f6fd3dd37b9 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Thu, 24 Nov 2022 11:34:37 -0800 Subject: [PATCH] fix: Fixes pre-codegen deserialization of base quiver (#1281) --- Projects/UOContent/Items/Quivers/BaseQuiver.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/UOContent/Items/Quivers/BaseQuiver.cs b/Projects/UOContent/Items/Quivers/BaseQuiver.cs index bdd311705..7a80daea6 100644 --- a/Projects/UOContent/Items/Quivers/BaseQuiver.cs +++ b/Projects/UOContent/Items/Quivers/BaseQuiver.cs @@ -431,7 +431,7 @@ public partial class BaseQuiver : Container, ICraftable, IAosItem _lowerAmmoCost = reader.ReadInt(); } - if ((flags & 0x3) != 0) + if ((flags & 0x8) != 0) { _weightReduction = reader.ReadInt(); }