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. }