From 15557aa2166d96bffcf56840d2d3f18dafc6cba2 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Thu, 5 Feb 2026 12:02:54 -0800 Subject: [PATCH] fix: Fixes SmallBOD Exception validation (#2327) --- Projects/UOContent/Engines/Bulk Orders/SmallBOD.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Projects/UOContent/Engines/Bulk Orders/SmallBOD.cs b/Projects/UOContent/Engines/Bulk Orders/SmallBOD.cs index f9108fe78..f73d2c01f 100644 --- a/Projects/UOContent/Engines/Bulk Orders/SmallBOD.cs +++ b/Projects/UOContent/Engines/Bulk Orders/SmallBOD.cs @@ -139,9 +139,9 @@ public abstract partial class SmallBOD : BaseBOD { from.SendLocalizedMessage(1049352); // The item is not made from the requested leather type. } - else if (RequireExceptional && (armor?.Quality == ArmorQuality.Exceptional || - clothing?.Quality == ClothingQuality.Exceptional || - weapon?.Quality == WeaponQuality.Exceptional)) + else if (RequireExceptional && armor?.Quality != ArmorQuality.Exceptional && + clothing?.Quality != ClothingQuality.Exceptional && + weapon?.Quality != WeaponQuality.Exceptional) { from.SendLocalizedMessage(1045167); // The item must be exceptional. }