Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nwjgit committed Oct 13, 2024
1 parent f6b1a4c commit 84f2675
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/data/similarItems.ts
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ const source: [string, (string | number)[]][] = [
];

// Build skill cape & master cape similar items. This also handles comp and comp(t) receiving all skillcape and master cape perks.
skillcapes.forEach(cape => {
for (const cape of skillcapes) {
const untrimmedCape = getOSItem(cape.untrimmed).name;
const trimmedCape = getOSItem(cape.trimmed).name;
const masterCape = getOSItem(cape.masterCape.id).name;
Expand Down Expand Up @@ -499,7 +499,7 @@ skillcapes.forEach(cape => {
} else {
source.push([masterCape, masterCapeList]);
}
});
}

for (const { baseItem, dyedVersions } of dyedItems) {
// Update matching child rows (simmilarItems) first:
Expand Down

0 comments on commit 84f2675

Please sign in to comment.