Fix reorderHideoutAreasWithResouceInputs() off by one error because it was checking the index instead of finding the area type

This commit is contained in:
Dev 2023-11-16 14:30:08 +00:00
parent fce724b380
commit 15082afde2

View File

@ -575,8 +575,7 @@ export class ProfileFixerService
for (const areaId of areasToCheck)
{
const area = pmcProfile.Hideout.Areas[areaId];
const area = pmcProfile.Hideout.Areas.find(x => x.type === areaId);
if (!area)
{
this.logger.debug(`unable to sort ${areaId} slots, no area found`);