Log file being deserialized

This commit is contained in:
Dev 2023-12-13 20:02:44 +00:00
parent 3e2253aaef
commit 9e6c12a9b2

View File

@ -146,7 +146,7 @@ export class PreAkiModLoader implements IModLoader
const modOrder = this.vfs.readFile(this.modOrderPath, { encoding: "utf8" });
try
{
this.jsonUtil.deserialize<any>(modOrder).order.forEach((mod: string, index: number) =>
this.jsonUtil.deserialize<any>(modOrder, this.modOrderPath).order.forEach((mod: string, index: number) =>
{
this.order[mod] = index;
});