attempt to fix the customization issue.
This commit is contained in:
parent
fbf9183187
commit
9dbba5f072
|
|
@ -555,6 +555,8 @@ class CharacterCustomizationShared
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SaveOutfit(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SelectPart(string part)
|
public void SelectPart(string part)
|
||||||
|
|
@ -734,6 +736,8 @@ class CharacterCustomizationShared
|
||||||
{
|
{
|
||||||
outputImage.Image = Util.LoadImage(itemdir + @"\\" + item.Replace(".rbxm", "") + ".png", itemdir + @"\\" + defaultitem + ".png");
|
outputImage.Image = Util.LoadImage(itemdir + @"\\" + item.Replace(".rbxm", "") + ".png", itemdir + @"\\" + defaultitem + ".png");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SaveOutfit(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool IsItemURL(string item)
|
public bool IsItemURL(string item)
|
||||||
|
|
@ -756,7 +760,6 @@ class CharacterCustomizationShared
|
||||||
public void Launch3DView()
|
public void Launch3DView()
|
||||||
{
|
{
|
||||||
FileManagement.ReloadLoadoutValue();
|
FileManagement.ReloadLoadoutValue();
|
||||||
SaveOutfit(false);
|
|
||||||
//HACK!
|
//HACK!
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,7 @@ namespace Novetus.Core
|
||||||
public INIFile(string INIPath)
|
public INIFile(string INIPath)
|
||||||
{
|
{
|
||||||
path = INIPath;
|
path = INIPath;
|
||||||
|
File.SetAttributes(path, FileAttributes.Normal);
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Write Data to the INI File
|
/// Write Data to the INI File
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue