Quote from: Argain on July 20, 2014, 11:16:28 AM
Hmm, well here's the code that MacFix2 was using:Code Select
else if (OS == Platform.Mac)
{
path = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
path += "/Library/Caches/unity.Ludeon Studios.RimWorld/CharSaves/" + groupName + ".col";
}
As you can see, most of the slashes were already "/"... not sure why they're switching direction at runtime lol
Edit: think it might need to beCode Select
@"/Library/Caches/unity.Ludeon Studios.RimWorld/CharSaves/"
to make it not 'interpret' anything within the string... so hopefully this fix will make the slashes point in the right direction...
Edit2: Managed to find my old code from the Alpha 4F version that was using more relative file pathing, so this 'GeneralImportFix' might work best.
Awesome, man! Sorry I didn't reply earlier, life's too busy. Excellent mod, glad we got this all sorted out.
See if this other fix works for ya lol (attached to this post)