diff --git a/Scripts/Mobiles/PlayerMobile.cs b/Scripts/Mobiles/PlayerMobile.cs index 112c28a98..d01c23736 100644 --- a/Scripts/Mobiles/PlayerMobile.cs +++ b/Scripts/Mobiles/PlayerMobile.cs @@ -3177,12 +3177,12 @@ namespace Server.Mobiles private void InternalChangeHair( bool hair, int id, ref int storeID, ref int storeHue ) { -     if ( storeID == -1 ) -     { -         storeID = hair ? HairItemID : FacialHairItemID; -         storeHue = hair ? HairHue : FacialHairHue; -     } -     CreateHair( hair, id, 0 ); + if ( storeID == -1 ) + { + storeID = hair ? HairItemID : FacialHairItemID; + storeHue = hair ? HairHue : FacialHairHue; + } + CreateHair( hair, id, 0 ); } #endregion