private void btnDefault_Click(object sender, EventArgs e)
 {
     GameEngine.Instance.playInterfaceSound("avatar_reset_to_default");
     AvatarData avatar = new AvatarData();
     avatar.validateColours();
     this.lastBodyColours = null;
     this.lastLegColours = null;
     this.lastFeetColours = null;
     this.lastTorsoColours = null;
     this.lastTabardColours = null;
     this.lastArmsColours = null;
     this.lastHandsColours = null;
     this.lastShouldersColours = null;
     this.lastHairColours = null;
     this.lastHeadColours = null;
     this.lastWeaponColours = null;
     this.import(avatar);
 }