Skip to content

Commit

Permalink
Fixing default male/female avatars
Browse files Browse the repository at this point in the history
  • Loading branch information
PirateIzzy committed Jun 10, 2024
1 parent 1d8e4bf commit 9773367
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WzComparerR2.Avatar/UI/AvatarForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@ private void btnMale_Click(object sender, EventArgs e)
if (this.avatar.Parts.All(part => part == null)
|| MessageBoxEx.Show("Do you want to create a male character?", "OK") == DialogResult.OK)
{
LoadCode("2000,12000", 0);
LoadCode("2000,12000,20000,30000,1040036,1060026", 0);
}
}

Expand All @@ -1180,7 +1180,7 @@ private void btnFemale_Click(object sender, EventArgs e)
if (this.avatar.Parts.All(part => part == null)
|| MessageBoxEx.Show("Do you want to create a female character?", "OK") == DialogResult.OK)
{
LoadCode("2000,12000", 0);
LoadCode("2000,12000,21000,31000,1041046,1061039", 0);
}
}

Expand Down

0 comments on commit 9773367

Please sign in to comment.