Closed DemonRok closed 2 years ago
I'm using CUO 0.1.10.272 and Razor 1.7.4.49 and i'm unable to delete profile.
Pressing delete, it disappears from the list but closing and reopening CUO reappears. The files remain in the profile folder.
I replaced string file = $"Profiles/{remove}.xml"; at line 1316 in the Razor/UI/Razor.cs with string file = Path.Combine(Config.GetUserDirectory("Profiles"), $"{remove}.xml"); and it works fine!
string file = $"Profiles/{remove}.xml";
string file = Path.Combine(Config.GetUserDirectory("Profiles"), $"{remove}.xml");
I'm using CUO 0.1.10.272 and Razor 1.7.4.49 and i'm unable to delete profile.
Pressing delete, it disappears from the list but closing and reopening CUO reappears. The files remain in the profile folder.