playermobile.cs formatting issue

This commit is contained in:
mark 2006-06-18 17:38:43 +00:00
parent 197867a825
commit bf6f1dc812

View file

@ -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