From cb22c07cfb22ec57aefa5725f77f250993dfd3ec Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Sun, 26 Jul 2026 08:57:46 -0700 Subject: [PATCH] Style --- Projects/UOContent/Mobiles/PlayerMobile.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Projects/UOContent/Mobiles/PlayerMobile.cs b/Projects/UOContent/Mobiles/PlayerMobile.cs index 679f45c7e..6f1fb4d04 100644 --- a/Projects/UOContent/Mobiles/PlayerMobile.cs +++ b/Projects/UOContent/Mobiles/PlayerMobile.cs @@ -2826,8 +2826,8 @@ namespace Server.Mobiles for (var i = 0; i < recipeCount; i++) { var r = reader.ReadInt(); - if (version > 33 || - reader.ReadBool()) // Don't add in recipes which we haven't gotten or have been removed + // Don't add in recipes which we haven't gotten or have been removed + if (version > 33 || reader.ReadBool()) { _acquiredRecipes.Add(r); }